-
Notifications
You must be signed in to change notification settings - Fork 0
/
login.html
executable file
·54 lines (52 loc) · 2.12 KB
/
login.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
<!DOCTYPE html>
<html>
<head>
<title>登陆</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
<meta name="description" content="Write an awesome description for your new site here. You can edit this line in _config.yml. It will appear in your document head meta (for Google search results) and in your feed.xml site description.
">
<link rel="stylesheet" href="lib/weui.min.css">
<link rel="stylesheet" href="css/jquery-weui.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body ontouchstart style="background:#323542;">
<!--主体-->
<div class="login-box">
<div class="lg-title">欢迎登陆互利商城</div>
<div class="login-form">
<form action="#">
<div class="login-user-name common-div">
<span class="eamil-icon common-icon">
<img src="images/eamil.png" />
</span>
<input type="email" name="username" value="" placeholder="请输入您的手机号" />
</div>
<div class="login-user-pasw common-div">
<span class="pasw-icon common-icon">
<img src="images/password.png" />
</span>
<input type="password" name="password" value="" placeholder="请输入您的密码" />
</div>
<a href="javascript:;" class="login-btn common-div">登陆</a>
<a href="javascript:;" class="login-oth-btn common-div">微信登陆</a>
<!--<a href="javascript:;" class="login-oth-btn common-div">QQ登陆</a>-->
</form>
</div>
<div class="forgets">
<a href="psd_chage.html">忘记密码?</a>
<a href="regist.html">免费注册</a>
</div>
</div>
<script src="lib/jquery-2.1.4.js"></script>
<script src="lib/fastclick.js"></script>
<script type="text/javascript" src="js/jquery.Spinner.js"></script>
<script>
$(function() {
FastClick.attach(document.body);
});
</script>
<script src="js/jquery-weui.js"></script>
</body>
</html>