forked from binvant/MakeMyCareer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
post_job.html
43 lines (35 loc) · 1.49 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
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Create Job</title>
<link rel="stylesheet" href="https://codepen.io/gymratpacks/pen/VKzBEp#0">
<link href='https://fonts.googleapis.com/css?family=Nunito:400,300' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="style.css">
<script src="script-job-post.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
</head>
<body>
<div class="row">
<form id="file-form">
<div class="col-md-12 widthcss">
<h1> Create a new Job Posting </h1>
<fieldset>
<legend>Basic Job Info</legend>
<label for="Pname">Company Name:</label>
<input type="text" id="Cname" name="company_name">
<label for="Pname"> Position Name:</label>
<input type="text" id="Pname" name="position_name">
<label for="JD"> Job Description:</label>
<input type="text" id="JD" name="JD">
<label for="skills"> Specific Skills Required:</label>
<input type="text" id="skills" name="skills">
<label for="skills"> Job Url:</label>
<input type="text" id="jobUrl" name="jobUrl">
</fieldset>
<button type="button" onclick="postjob()">Create Job</button>
</div>
</form>
</div>
</body>
</html>