-
Notifications
You must be signed in to change notification settings - Fork 0
/
sign_up.html
48 lines (48 loc) · 1.9 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Library Manager | Sign up</title>
<link rel="stylesheet" href="./css/sign_up.css">
</head>
<body>
<main>
<div class="signup_container">
<div class="signup">
<form action="" method="post">
<h2>Đăng kí tài khoản</h2>
<div class="input-box">
<input type="text" placeholder="Họ và tên">
</div>
<div class="bd">
<input type="date">
</div>
<h4>Ngày/tháng/năm sinh:</h4>
<div class="gen">
<input type="radio" name="gen" id="m" value="1" checked>
<label for="m">Nam</label>
<input type="radio" name="gen" id="fm">
<label for="fm">Nữ</label>
</div>
<h4>Giới tính:</h4>
<div class="input-box">
<input type="text" placeholder="Địa chỉ email">
</div>
<div class="input-box">
<input type="password" placeholder="Mật khẩu">
</div>
<div class="input-box">
<input type="password" placeholder="Nhập lại mật khẩu">
</div>
<div class="btn-box">
<button type="submit"><a href="./log_in.html">Đăng kí</a></button>
</div>
</form>
<p>Đã có tài khoản? <a href="./log_in.html">Đăng nhập!</a></p>
</div>
</div>
</main>
</body>
</html>