-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpostJob.html
83 lines (73 loc) · 3.53 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
83
<!DOCTYPE html>
<html>
<head>
<title> DART </title>
<link rel="stylesheet" href="src/styles/header and footer.css">
<link rel="stylesheet" href="src/styles/postJob.css">
</head>
<body>
<!-- Header and Nav Bar -->
<header>
<!-- Logo Image -->
<div>
<a href="jobs.html">
<img id="logoImage" src="assets\logo\phd-logos.jpg">
</a>
</div>
<!-- Nav Links -->
<nav>
<ul>
<li> <a href="jobs.html"> Jobs </a> </li>
<li> <a href="Profiles.html"> Profile </a> </li>
<li> <a href="landing.html"> Sign Out </a> </li>
</ul>
</nav>
<!-- Banner Texts -->
<div id="intro">
<h1> Find Incredible Talent </h1>
<h5> Search for a qualified employee </h5>
<p style="color: transparent;"> Lorem ipsum dolor sit amet consectetur adipisicing elit. Accusantium molestias rem voluptatem sint! Quisquam vitae minus beatae aperiam, corrupti, dolores obcaecati, fugiat quia perferendis harum autem repellendus magnam. Consequuntur, repudiandae.</p>
</div>
<!-- Banner Image -->
<div>
<img id="bannerImage" src="assets\illustrations\undraw_Group_hangout_re_4t8r.png">
</div>
</header>
<!--
INSERT CONTENT HERE
-->
<!-- -->
<div id="newJobPostForm">
<h1> Post A Job </h1>
<h3> Please fill out all the required inputs in the form!</h3>
<div id="newJobPostInputs">
<form >
<div id="inputSubContainer">
<h3> About Company </h3>
<input id="companyLogo" type="text" placeholder="link to company logo" required>
<span class="error" id="logoErr"></span>
<input id="companyName" type="text" placeholder="company name" required>
<span class="error" id="nameErr"></span>
<input id="location" type="text" placeholder="location" required>
<span class="error" id="locationErr"></span>
</div>
<div id="inputSubContainer">
<h3> About Job </h3>
<input id="jobRole" type="text" placeholder="job role" required>
<span class="error" id="roleErr"></span>
<input id="jobType" type="text" placeholder="job type" required>
<span class="error" id="typeErr"></span>
<input id="description" type="text" placeholder="description" required>
<span class="error" id="descriptionErr"></span>
</div>
<input id="submitJobBtn" onclick="postJob(event)" type="submit" value="Submit New Job" >
<button id="undoSubmissionBtn" onclick="undoPostJob(event)"> Undo </button>
</div>
</form>
</div>
<!-- Footer -->
<footer>
<p>DART © <script>document.write(new Date().getFullYear());</script> All Rights Reserved!</p> </footer>
<script src="src/js/postJob.js"></script>
</body>
</html>