-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathform_project.html
71 lines (57 loc) · 3.01 KB
/
form_project.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
<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>Form Project</title>
<link rel="stylesheet" href="../css/form_style.css">
</head>
<body>
<div class="outer_div">
<form action="">
<h1>Application Form for Permission to Date my Daughter</h1>
<p><strong>Note:</strong> Form is to be completed at least 21 days prior to date my Daughter</p>
<fieldset>
<legend><strong>Personal Details</strong></legend>
Name: <input type="text" placeholder="Enter name here" id="name"> <br>
Address:<input type="text" placeholder="Enter your Address here" id="add"> <br>
Email: <input type="email" placeholder="Enter a valid email" id="email"><br>
IQ: <input type="text" placeholder="Enter IQ here" id="iq"><br>
Gender:<br>
<input type="radio" value="male">Male <br>
<input type="radio" value="female">Female <br>
<input type="radio" value="other">Other <br>
Date of Proposed Outing:
<input type="date">
</fieldset>
<fieldset>
<p><strong>Check all that Apply</strong></p>
<input type="checkbox" value="tattoo">I have tattoos and/or piercing <br>
<input type="checkbox" value="years_older">I am more than 2 years older than my Daughter <br>
<input type="checkbox" value="vehicle">I own a panel van or V8 <br>
<input type="checkbox" value="employment_status">I work full time <br>
<input type="checkbox" value="rich_folks">My parent are rich <br>
<input type="checkbox" value="social">Is the date at a well lit public location <br>
</fieldset>
<fieldset>
Political Party:
<select name="party" id="">
<option value="0" selected disabled>Pick one option</option>
<option value="cad">CAD</option>
<option value="amd">AMD</option>
<option value="usd">USD</option>
<option value="others">Others</option>
</select>
</fieldset>
<fieldset>
<legend>Essay Section</legend>
In not less than 50 words, explain why you want to date my Daughter
<input type="textarea">
Upload Police Clearance certificate, Bank statement and Medical Certificates
<button type="">Attach file</button>
</fieldset>
<button id="submitt">Submit Application</button>
</form>
</div>
</body>
</html>