-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathVận dụng 1.html
49 lines (25 loc) · 951 Bytes
/
Vận dụng 1.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Biểu mẫu đăng ký thành viên</title>
</head>
<body>
<h2>Đăng ký thành viên</h2>
<form action="/submit_registration" method="post">
<label for="fullname">Họ và tên:</label><br>
<input type="text" id="fullname" name="fullname" required><br>
<label for="email">Email:</label><br>
<input type="email" id="email" name="email" required><br>
<label for="birthdate">Ngày sinh:</label><br>
<input type="date" id="birthdate" name="birthdate" required><br>
<label for="membership">Loại hình thành viên:</label><br>
<select id="membership" name="membership">
<option value="basic">Thành viên cơ bản</option>
<option value="premium">Thành viên cao cấp</option>
</select><br>
<input type="submit" value="Đăng ký">
</form>
</body>
</html>