-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathenrol.html
52 lines (52 loc) · 1.83 KB
/
enrol.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
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title>注册</title>
<link rel="stylesheet" href="css/注册.css" type="text/css"/>
</head>
<body>
<div class="box">
<div class="littlebox">
<h4>用户注册</h4>
<hr/>
<form action="">
<p>
请输入昵称:<input type="text" class="a">
</p>
<p>
请输入密码:<input type="password" class="a">
</p>
<p>
请确认密码:<input type="password" class="a">
</p>
<p>
性别:男<input type="radio" name="aa"/>
女<input type="radio" name="aa"/>
</p>
<p>
身份证号:<input type="text" class="a">
</p>
<p>
出生日期:<input type="date" class="a">
</p>
<p>
手机号码:<input type="text" class="a">
</p>
</form>
<div>
<input type="submit" value="注册" class="zhuce">
</div>
<div>
<a href="shouye.html">返回首页</a>
</div>
</div>
</div>
</body>
</html>