-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathform.html
More file actions
94 lines (93 loc) · 4.71 KB
/
form.html
File metadata and controls
94 lines (93 loc) · 4.71 KB
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>sign-up</title>
</head>
<body>
<!-- header -->
<header>
<h1>Application Form</h1>
</header>
<main id="main">
<section>
<!-- Form -->
<p>Fill in your details</p>
<form action="/index.html" method="POST" aria-label="Form">
<label for="firstname">Firstname*</label>
<input type="text" name="firstname" placeholder="Firstname" />
<label for="lastname">Lastname*</label>
<input type="text" name="lastname" placeholder="Lastname" />
<br /> <br>
<label for="Gender">Gender*</label>
<select name="Gender" place>
<option value="default" disabled selected>Select Gender</option>
<option value="male">male</option>
<option value="Female">Female</option>
</select>
<label for="Birth date">Date of Birth*</label>
<input type="date" name="Date of Birth">
<br><br>
<label for="Email Address">Email Address*</label>
<input type="email" name="Email Address" placeholder="Enter Email Address">
<label for="Education Level">Education Level*
<select name="Education Level">
<option value="default" disabled selected>Select level of education</option>
<option value="Bsc">Bsc</option>
<option value="Msc">Msc</option>
<option value="Diploma">Diploma</option>
<option value="Doctorate(phD)">Doctorate (phD)</option>
<option value="highschool/secondary school">high school/
secondary school</option>
<option value="Under Graduate">Under Graduate</option>
<option value="Junior / Middleschool">Junior / Middleschool</option>
<option value="Post Graduate">Post Graduate</option>
</select>
<br><br>
<label for="country">country*</label>
<input type="text" name="country" placeholder="Enter your country">
<label for="state/city of residence">State/city of residence*</label>
<input type="text" name="state/city of residence" placeholder="Enter State/city of residence">
<br><br>
<label for="Employment Status">Employment Status</label>
<select name="Employment status">
<option value="default" disabled selected>Select employment status</option>
<option value="Unemployed">Unemployed</option>
<option value="employed">Employed</option>
<option value="Self-employed">Self-employed</option>
</select>
<label for="Phone number">Phone Number*</label>
<input type="text" placeholder="08154387000">
<br><br>
<label for="Choose School">Choose School*</label>
<select name="Choose School">
<option value="default" disabled selected>Select school</option>
<option value="Data">School of Data</option>
<option value="engineering">School of Engineering</option>
<option value="Product">School of Product</option>
</select>
<label for="Choose course of study">Course of Study*</label>
<select name="course of study">
<option value="default" disabled selected>Select Course of Study</option>
<option value="F-engineering">Frontend Engineering</option>
<option value="B-engineering">Backend Engineering</option>
<option value="C-engineering">Cloud Engineering</option>
<option value="Data">Data Analysis</option>
<option value="Product"> Product Design</option>
</select>
<br><br>
<label for="question">How did you hear about us?*</label>
<input type="text" name="question" placeholder="eg.twitter">
<label for="scholarship">Scholarship/Discount Code (optional)</label>
<input type="text" name="scholarship" placeholder="Scholarship or student ID or discount codes">
<p>By clicking continue, I agree to <a href="#">Terms of Use</a> and acknowledge that I have read the <a href="#">Privacy Policy.</a></p>
<button>Proceed</button>
</form>
<br><br>
<b>Already have an account?<a href="#">sign in</a></b>
</section>
<p>Back to <a href="./index.html">home</a> page</p>
</main>
</body>
</html>