-
Notifications
You must be signed in to change notification settings - Fork 0
/
post_job.html
53 lines (50 loc) · 1.93 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
49
50
51
52
53
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="CSS/index.css" type="text/css">
<link rel="icon" type="image/png" href="Media/favicon.png">
<meta charset="utf-8">
<title>Post a job</title>
</head>
<body>
<div class="navB">
<ul>
<li><a href="index.html" class="active">Home</a></li>
<li><a href="browse_jobs.html">Browse jobs</a></li>
<li><a href="post_job.html">Post a job</a></li>
<li><a href="community_guideline.html">Community Guidelines</a></li>
<li><a href="support.html">Support</a></li>
<li><a href="profile_settings.html">Profile Settings</a></li>
<li class="dropdown">
<a href="javascript:void(0)" class="dropbtn" style="margin-right:95px;">Login</a>
<div class="dropdown-content">
<a href="log_in.html">Worker</a>
<a href="log_in_hirer.html">Hirer</a>
</div>
</li>
<li class="dropdown">
<a href="javascript:void(0)" class="dropbtn">Register</a>
<div class="dropdown-content">
<a href="register_worker.html">Worker</a>
<a href="register_hirer.html">Hirer</a>
</div>
</li>
</ul>
</div>
<div class="M_header">
<h1>Tell us what you need done</h1>
<p>Connect with qualified PostAJob personnel’s within minutes.<br> View profiles, portfolios and communicate with them.<br> Deposit into PostAJob only when satisfied with the work offered.</p>
</div><div class="M_container2">
<label for="fproject">Choose a name for your project</label>
<br>
<input type="text" id="fproject" name="firstproject" placeholder="Project Name..">
<br>
<label for="lproject">Tell us more about your project</label>
<p>Start with a bit about yourself or your business, and include an overview of what you need done.</p>
<input type="text" id="lproject" name="lproject" placeholder="Describe your project..">
<br>
<input type="submit" value="Submit">
</div><div id="M_main">
</div>
</body>
</html>