-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathweb.html
66 lines (61 loc) · 2.04 KB
/
web.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Đăng ký môn thi tốt nghiệp</title>
<link rel="stylesheet" href="web.css" />
</head>
<body>
<h1>Đăng ký môn thi tốt nghiệp</h1>
<form action="register">
<label for="name">Họ và Tên</label>
<input
type="text"
id="name"
name="name"
placeholder="Nhập họ và tên"
required
/>
<label for="cccd">CCCD</label>
<input
type="number"
id="cccd"
name="cccd"
placeholder="Nhập CCCD"
required
/>
<label for="dob">Ngày Sinh</label>
<input type="date" id="dob" name="dob" required />
<label>Giới tính</label>
<div class="gender-options">
<input type="radio" id="male" name="gender" value="Nam" required />
<label for="male">Nam</label>
<input type="radio" id="female" name="gender" value="Nữ" required />
<label for="female">Nữ</label>
</div>
<label>Môn thi</label>
<div class="subject-options">
<input type="checkbox" id="toan" name="subjects" value="Toán" />
<label for="toan">Toán</label>
<input type="checkbox" id="ngu-van" name="subjects" value="Ngữ Văn" />
<label for="ngu-van">Ngữ Văn</label>
<input
type="checkbox"
id="ngoai-ngu"
name="subjects"
value="Ngoại Ngữ"
/>
<label for="ngoai-ngu">Ngoại Ngữ</label>
</div>
<label for="combination">Tổ hợp</label>
<select id="combination" name="combination" required>
<option value="" disabled selected>Chọn tổ hợp</option>
<option value="Khoa học Tự nhiên">Khoa học Tự nhiên</option>
<option value="B">B</option>
<option value="C">C</option>
</select>
<input type="submit" class="submit-button" value="Gửi Thông Tin" />
</form>
</body>
</html>