forked from Yemomo511/2023-advance-front-test
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjoin.html
67 lines (67 loc) · 2.31 KB
/
join.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>加入我们</title>
<link rel="stylesheet" href="css/common.css" />
<link rel="stylesheet" href="css/header.css" />
<link rel="stylesheet" href="css/join.css" />
</head>
<body>
<div class="box">
<div class="header">
<div class="header-left">
<img src="img/logo.png" alt="logo" />
</div>
<div class="header-right">
<div class="icon-box">
<a href="./index.html">首页</a>
</div>
<div class="icon-box">
<a href="./product.html">产品</a>
</div>
<div class="icon-box">
<a href="./knowLedge.html">了解我们</a>
</div>
<button class="join-button">
<a href="./join.html">加入我们</a>
</button>
</div>
</div>
<div class="content-box">
<div class="form-box">
<div class="name-box form-item">
<label for="name">姓名</label>
<input class="input-error" type="text" id="name" placeholder="姓名"/>
</div>
<p class="name-notice notice-p" id="nameNotice"></p>
<div class="check-box form-item">
<label>性别</label>
<div class="check">
<input type="radio" name="性别" value="man" />
<p>男</p>
</div>
<div class="check">
<input type="radio" name="性别" value="women" />
<p>女</p>
</div>
</div>
<p class="check-notice notice-p" id="checkNotice"></p>
<div class="date-box form-item">
<label for="date">出生日期</label>
<input type="date" id="date" />
</div>
<p class="date-notice notice-p" id="dateNotice"></p>
<div class="phone-number-box form-item">
<label for="phone">手机号码</label>
<input type="text" id="phone" placeholder="手机号"/>
</div>
<p class="number-notice notice-p" date="numberNotice"></p>
<button class="submit-button" id="submit">报名</button>
</div>
</div>
</div>
</body>
<script src="./js/join.js"></script>
</html>