-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsign.html
77 lines (77 loc) · 3.31 KB
/
sign.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<!DOCTYPE html>
<html lang="en">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>sign in</title>
<meta name="keywords" content="" />
<meta name="description" content="" />
<head>
<link rel="stylesheet" type="text/css" href="//at.alicdn.com/t/font_1473993588_5876014.css">
<link rel="stylesheet" type="text/css" href="src/css/sign.css">
<script type="text/javascript" src="src/js/jquery-1.12.4.min.js"></script>
<script type="text/javascript" src="src/js/jquery.validate.min.js"></script>
<script type="text/javascript" src="src/js/validate.js"></script>
<script type="text/javascript" src="src/js/modernizr.custom.26361.js"></script>
<!--[if lt IE 9]>
<link rel="stylesheet" type="text/css" href="dist/css/ie9.css" />
<![endif]-->
</head>
<body>
<div class="logo">
<a href="#" title=""><img src="src/images/logo.png" alt="logo"></a>
</div>
<div class="content clearfix">
<div class="signIn fl">
<a class="facebook " href="" title=""><i class="iconfont icon-facebook"></i><span>Sign in With Facebook</span></a>
<h2>Sign In</h2>
<form id="signIn_form" method="get" action="com/search/result/">
<div class="input-box">
<i class="iconfont icon-youxiang"></i>
<input type="email" name="email" id="E-mail" placeholder="Email Address" required autocomplete="on" />
</div>
<div class="input-box">
<i class="iconfont icon-suo-copy"></i>
<input type="password" name="password" placeholder="Password" required/ >
</div>
<div class="remenber">
<input type="checkbox" checked="checked" name="" id="checkbox"><label for="checkbox">Remember Me</label>
<a class="forgot" href="" title="">Forgot Password?</a>
</div>
<button class="button sign-in" type="submit">Sign In</button>
</form>
</div>
<div class="NewAccount fr">
<h2>Register A New Account</h2>
<form id="register_form" method="post" action="com/search/result/">
<div class="input-box">
<i class="iconfont icon-youxiang"></i>
<input type="email" name="email" placeholder="Email Address" autocomplete="on" required/ >
</div>
<div class="input-box">
<i class="iconfont icon-suo-copy"></i>
<input type="password" name="password" id="password1" class="{required:true,minlength:5}" placeholder="Password" required/ >
</div>
<div class="input-box">
<i class="iconfont icon-shenglvehao"></i>
<input type="password" name="confirm_password" class="{required:true,minlength:5,equalTo:'#password'}" placeholder="Confirm Password " required/ >
</div>
<p class="remenber">
<input type="checkbox" name="" id="checkbox2" checked="checked">
<label for="checkbox2">I agree to highqualitybuy.com</label>
<a class="terms" href="">Terms and Conditions</a>
</p>
<p class="remenber">
<input type="checkbox" name="" id="checkbox3" checked="checked">
<label for="checkbox3">Sign Up For Newsletter.</label>
</p>
<div class="off">
<p>
<span class="red">10% Off</span> First Order</br>
Login First To Get <span class="red">10 Points</span>
</p>
<button class="button register" type="submit">Register</button>
</div>
</form>
</div>
</div>
</body>
</html>