-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsign-up.html
116 lines (115 loc) · 3.39 KB
/
sign-up.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
110
111
112
113
114
115
116
<!DOCTYPE html>
<!-- -->
<html lang="en">
<head>
<meta charset="UTF-8">
<title>SignUp</title>
<meta name="viewport" content="width = device-width,initial-scale=1">
<link rel="stylesheet" type="text/css" href="css/public.css">
<link rel="stylesheet" type="text/css" href="css/signin.css">
<!--<script src="js/MyJs.js" type="text/javascript"></script>-->
</head>
<body>
<div class="box container">
<div class="backG" style="height:auto;width: 100%;margin:0px;padding: 0px;">
<!--背景-->
<image src="images/sign.jpg"></image>
</div>
<div class="box box-top top-style1">
<div class="logoImg"> <!-- logo图片 -->
<a href="">
<img class="logo-w" src="images/logo-w.png">
</a>
</div>
<div class="nav-search"> <!-- 搜索栏-->
<form action="search.html" method="get">
<input type="text" class="search-content" name="searchContent">
<input type="submit" class="search-btn" name="searchBtn" value="搜索">
</form>
</div>
<div class="nav-items"> <!-- 登陆注册-->
<ul>
<li>
<img class="search-icon" src="images/search-icon.png">
</li>
<li>
<a href="personalCenter.html" class="top-name">Hannah</a>
</li>
<li>
<a href="">退出</a>
</li>
</ul>
</div>
</div>
<div class="registeform">
<form>
<input class="form-control"
name="userName"
placeholder="输入用户名"
style="">
<input class="form-control"
name="password"
placeholder="输入8-16位密码"
type="password">
<input class="form-control"
name="password"
placeholder="请确认密码"
type="password">
<input class="form-control"
name="identifyCode"
placeholder="输入验证码"
style="width: 200px;margin-left: 17px">
<img src="images/identify.jpg" class="verification">
<div>
<div style="width: 100%; height: 30px;" >
<input type="checkbox" id="check1" name="check1">
<label for="check1">同意会员条款和免责条例</label>
</div>
<input class="signUpButton" type="submit" value="注册" onclick="checkSignUp()">
<p id="para2">
已有族迹账号?
<a href="sign-in.html" style="color: #0094ff">
点击登录
</a>
</p>
</div>
</form>
</div>
</div>
<div class="box footer"> <!-- 底部-->
<div class="bottomLine"></div>
<nav>
<div class="footer-txt footer-title">联系我们</div>
<div class="box footer-icon">
<a href="www.baidu.com">
<div class="icon box icon-weibo">
<img src="images/weibo.png">
</div>
</a>
<a href="#">
<div class="icon icon-wechat">
<ul>
<li>
<img id="wechat" src="images/wechat.png">
</li>
<li>
<img id="wechat2" src="images/wechat2.png">
</li>
</ul>
</div>
</a>
</div>
<div class="footer-txt footer-service">
<a href="customerService.html">用户手册</a>
</div>
<div class="footer-txt footer-subscribe">
<a class="login" href="#">注册 / 登陆</a>
</div>
<div class="footer-txt footer-msg">Copyright © 2017 Pinch Design Ltd. All rights reserved. Zuji is a registered trademark.</div>
</nav>
</div>
</div>
<script type="text/javascript" src="js/jquery-3.1.1.min.js"></script>
<script type="text/javascript" src="js/public.js"></script>
</body>
</html>