-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsign.html
109 lines (100 loc) · 3.56 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<link rel="stylesheet" href="./css/sign.css">
</head>
<body>
<!-- 头部logo -->
<div id="header">
<a href=""></a>
</div>
<div id='bg'>
<a href="">
<div class="bg"></div>
</a>
<!-- 表单 -->
<div class="form_nav">
<div class="form">
<!-- 表单标题 -->
<div class='form_title'>
<a href="" id="now">
账号登录
</a>
<span class="line"></span>
<a href="">
扫码登录
</a></div>
<!-- 表单内容 -->
<div class="content">
<form action="" id="form">
<!-- 输入框 -->
<div class="input">
<!-- 账号 -->
<label for="" class="names">
<input type="text" placeholder="邮箱/手机号码/小米ID" class="usename">
</label>
<!-- 密码 -->
<label for="" class="pass">
<input type="password" placeholder="密码" class="usename">
</label>
<!-- 登录按钮 -->
<label for="" class="button">
<input type="submit" class="sign">
</label>
<!-- 手机登录注册 -->
<p class="form_p">
<a href="">手机短信登录/注册</a>
<a href=""> 忘记密码?</a>
<span>|</span>
<a href="./login.html">立即注册</a>
</p>
</div>
<!-- 输入框结束 -->
</form>
</div>
<!-- 其他登录方式 -->
<div class="othersign">
<fieldset class="othersign_line">
<legend class="othersign_p">其他方式登录</legend>
<!-- 登录方式图标 -->
<ul class="othersign_img">
<li><a href=""></a></li>
<li><a href=""></a></li>
<li><a href=""></a></li>
<li><a href=""></a></li>
</ul>
</fieldset>
</div>
</div>
</div>
</div>
<!-- 底部 -->
<div id="footer">
<ul class="footer_top">
<li>
<a href="">简体</a>|
</li>
<li>
<a href="">繁体</a>|
</li>
<li>
<a href="">English</a>|
</li>
<li>
<a href="">常见问题</a>
</li>
</ul>
<p class="footer_bottom">
小米公司版权所有-京ICP备10046444-
<a href="">
<span><img src="./imgs/注册/ghs.png" alt=""></span>
京公网安备11010802020134号</a>
-京ICP证110507号
</p>
</div>
</body>
</html>