-
Notifications
You must be signed in to change notification settings - Fork 0
/
apply_to.html
30 lines (30 loc) · 1.08 KB
/
apply_to.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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
<title>Applicant Form</title>
</head>
<body>
<fieldset>
<legend>Apply now!</legend>
<form method='POST' action='apply_to.php'>
<p>
<input type = 'text' id = 'applicant_fname' name = 'applicant_fname' placeholder = 'Your first name...'>
</p>
<p>
<input type = 'text' id = 'applicant_lname' name = 'applicant_lname' placeholder = 'Your last name...'>
</p>
<p>
<input type = 'email' id = 'applicant_email' name = 'applicant_email' placeholder = 'Your email...'>
</p>
<p>
<input type = 'text' id = 'applicant_city' name = 'applicant_city' placeholder = 'City...'>
</p>
<p>
<input type = 'text' id = 'applicant_phone' name = 'applicant_phone' placeholder = 'Phone number...'>
</p>
<input type='submit' name='submit' value='Post!'>
</form>
</fieldset>
</body>
</html>