-
Notifications
You must be signed in to change notification settings - Fork 0
/
postjob.html
82 lines (60 loc) · 2.17 KB
/
postjob.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
80
81
82
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="main.css">
</head>
<body>
<div class="mid">
<img src="pics/Logo.png" alt="Logo" height="190px" width="300px">
</div>
<ul>
<li><a class="active" href="index.html">Home</a></li>
<li><a href="login.html">Login</a></li>
<li><a href="signup.html">Looking for a Job?</a></li>
<li><a href="funding.html">Looking for Funding?</a></li>
<li><a href="business.html">Looking for Employees?</a></li>
<li><a href="contact.html">Contact</a></li>
<!-- <li><a href="about.html">About</a></li> -->
</ul>
<form action="/action_page.php">
<p style="text-align: center;">Post a Job!</p>
<label for="fn"><b>Job Title: </b></label>
<input type="text" Placeholder="Job Title" value="">
<br><br>
<label for="fn"><b>Business Name: </b></label>
<input type="text" Placeholder="Your Business Name" value="">
<br>
<p style="text-align: left;"> General Description </p>
<br>
<textarea rows="4" cols="100">
</textarea>
<br>
<br>
<p style="text-align: left;"> Duties and Responsibilities</p>
<br>
<textarea rows="4" cols="100">
</textarea>
<br>
<br>
<p style="text-align: left;"> Knowledge, Skills, and Abilities Needed</p>
<br>
<textarea rows="4" cols="100">
</textarea>
<br>
<br>
<p style="text-align: left;"> Experience and Education Required and Prefered</p>
<br>
<textarea rows="4" cols="100">
</textarea>
<br>
<br>
<label for="fn"><b>Phone Number: </b></label>
<input type="text" Placeholder="Phone Number" value="">
<label for="fn"><b>Email Address: </b></label>
<input type="text" Placeholder="Email Address" value="">
<br>
<button onclick="location.href='success.html'" type="button">Submit</button>
</a>
</body>
</html>