-
Notifications
You must be signed in to change notification settings - Fork 0
/
post_job.html
48 lines (48 loc) · 1.73 KB
/
post_job.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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="style.css">
<title>Job Posting Form</title>
</head>
<body>
<header>
<h1>Job Board</h1>
<nav>
<button type="button" onclick="location.href='index.html'">[ Home ]</button>
<button type="button" onclick="location.href='jobs.php'">[ Jobs ]</button>
<button>[ Companies ]</button>
<button type="button" onclick="location.href='post_job.html'">[ Post a Job ]</button>
</nav>
</header>
<fieldset>
<legend>Post Job</legend>
<form method='POST' action='post_job.php'>
<p>
<input type='text' id = 'job_title' name='job_title' placeholder='Job title...'>
</p>
<p>
<input type='text' id = 'company_name' name='company_name' placeholder='Company name...'>
</p>
<p>
<input type='text' id = 'job_location' name='job_location' placeholder='Job location...'>
</p>
<p>
<input type='text' id = 'company_city' name='company_city' placeholder='City...'>
</p>
<p>
<input type='text' id = 'job_description' name='job_description' placeholder='Job description...' rows ='4'>
</p>
<p>
<input type='email' id = 'company_email' name='company_email' placeholder='Email...'>
</p>
<p>
<input type='text' id = 'company_phone' name='company_phone' placeholder='Phone number...'>
</p>
<p>
<input type='float' id = 'job_salary' name='job_salary' placeholder='Salary..'>
</p>
<input type='submit' name='submit' value='Post!'>
</form>
</fieldset>
</body>
</html>