-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathenrollment.html
79 lines (79 loc) · 3.05 KB
/
enrollment.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
68
69
70
71
72
73
74
75
76
77
78
79
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Enrollment Course</title>
<link
href="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="assets/styles/navbar.css" />
<link rel="stylesheet" href="assets/styles/enrollment.css" />
</head>
<body>
<header>
<div class="container">
<div class="logo">
<a href="index.html">Online Course Platform</a>
</div>
<nav>
<label for="toggle" class="toggle">
<img src="assets/icons/menu.webp" alt="Toggle Icon" />
</label>
<input type="checkbox" id="toggle" />
<ul>
<li>
<a href="#">Back</a>
</li>
<li>
<a href="#">Next</a>
</li>
<li>
<a href="#">Submit</a>
</li>
</ul>
</nav>
</div>
</header>
<main>
<section class="personal-information">
<div class="container">
<h2 class="main-title">Personal Information</h2>
<form method="post">
<div class="form-container">
<div class="input-container">
<label for="full-name">Full Name</label>
<input type="text" name="full-name" id="full-name" placeholder="Enter your full name" required autofocus />
</div>
<div class="input-container">
<label for="email">Email</label>
<input type="email" name="email" id="email" placeholder="Enter your email" required />
</div>
<div class="input-container">
<label for="phone-number">Phone Number</label>
<input type="text" name="phone-number" id="phone-number" placeholder="Enter your phone number" required />
</div>
<div class="input-container">
<label for="date-birth">Phone Number</label>
<input type="date" name="date-birth" id="date-birth" placeholder="Select your date birthr" required />
</div>
<div class="input-container">
<label>Gender</label>
<div class="gender">
<input type="radio" id="male" name="gender" />
<label for="male">Male</label>
<input type="radio" id="female" name="gender" />
<label for="female">Female</label>
<input type="radio" id="other" name="gender" />
<label for="other">Other</label>
</div>
</div>
</div>
<input type="submit" value="Next" />
</form>
</div>
</section>
</main>
</body>
</html>