-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathzhuce.html
60 lines (55 loc) · 1.94 KB
/
zhuce.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>zhuce</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="bootstrap/css/zhuce.css">
<link rel="stylesheet" href="font_ji826fg6x02dfgvi/iconfont.css">
</head>
<body>
<div id="logo">
<a href="index.html">BLUE</a>
</div>
<!-- 表单内容 -->
<div id="myform">
<form action="" onsubmit="return true" name="myform">
<div>Name <span>*</span></div>
<input type="text" oninput="checkUser(this)" name="user">
<span id="p1"></span>
<div>Email <span>*</span></div>
<input type="text" oninput="checkEmail(this)" name="email">
<span id="p2"></span>
<div>Password <span>*</span></div>
<input type="password" class="pwd" oninput="checkPwd(this)" name="pwd">
<span id="p3"></span>
<div>Enter the password again <span>*</span></div>
<input type="password" oninput="checkPwds(this)" name="pwd-again">
<span id="p4"></span>
<div>Mobile phone</div>
<input type="text" oninput="checkTel(this)" name="phone"><br>
<span id="p5"></span>
<label for="checkbox">
<input type="checkbox" id="checkbox">
I have read and agree to the terms of service and the legal statements. I will not create websites that contain vulgar content and hinder social stability
</label>
<hr>
<!-- 登录 注册按钮 -->
<button>REGISYER</button>
<a class="enter" href="denglu.html">
PLEASE LOGIN
</a>
</form>
<!-- 尾部图标 -->
<div class="icon-box">
Other account login:<a href="##"><i class="iconfont icon-QQ"></i></a>
<a href="##"><i class="iconfont icon-weixin"></i></a>
<a href="##"><i class="iconfont icon-googleplussymbol1"></i></a>
<a href="##"><i class="iconfont icon-facebook"></i></a>
</div>
</div>
<script src="bootstrap/js/jquery.min.js"></script>
<script src="bootstrap/js/zhuce.js"></script>
</body>
</html>