-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
81 lines (80 loc) · 3.71 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<title>Jobify: The only way up</title>
<link rel="shortcut icon" type="image/svg" href="css/img/jobify_favicon.svg">
<link rel="stylesheet" href="css/index.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Lato:wght@300;400&display=swap" rel="stylesheet">
</head>
<body>
<header id="header">
<div class="fixed row header" id='fixed'>
<img id="logo" src="css/img/logo.svg" alt="Jobiy"></img>
<div class="buttons">
<a id="home_btn">Home</a>
<a id="position_btn">Positions</a>
<a id="contact_btn">Contacts</a>
</div>
</div>
</header>
<div>
<div>
<h1 id="title"></h1>
</div>
<div id="content">
<div class="form">
<div id='position-form-box'>
<h3>Found a position you like?</h3>
<form id="position-form">
<label>Position Title:</label>
<input type="text" name="title">
<br/>
<label>Company Name:</label>
<input type="text" name="company_name">
<br/>
<label>Location:</label>
<input type="text" name="location">
<br/>
<label>Description:</label>
<input type="textarea" name="description">
<br/>
<label>Have you applied?</label>
<input type="checkbox" name="applied">
<br/>
<label>When did you apply?</label>
<input type="date" name="applied_date">
<br>
<input class="submit" type="submit" value="Submit">
</form>
</div>
<div id='contact-form-box'>
<h3>Did you make a new contact?</h3>
<form id="contact-form">
<label>First Name:</label>
<input type="text" name="first_name">
<br/>
<label>Last Name:</label>
<input type="text" name="last_name">
<br/>
<label>Company Name:</label>
<input type="text" name="company_name">
<br/>
<label>Email:</label>
<input type="text" name="email">
<br/>
<label>Position Title:</label>
<input type="text" name="job_title">
<br/>
<input class="submit" type="submit" value="Submit">
</form>
</div>
</div>
</div>
</body>
<script type="text/javascript" src="javascript/services/Contact_API.js"></script>
<script type="text/javascript" src="javascript/services/Position_API.js"></script>
<script type="text/javascript" src="javascript/models/contact.js"></script>
<script type="text/javascript" src="javascript/models/position.js"></script>
<script type="text/javascript" src="javascript/index.js"></script>
</html>