-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
29 lines (28 loc) · 1.08 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
<html lang="en">
<head>
<title>Job Funnelizer</title>
<link rel="stylesheet" href="index.css">
</head>
<body>
<div class="container">
<a href="https://www.figma.com/proto/9DoEqVn6r1p9giZkYPAwfy/Task-Management-Dashboard?node-id=0%3A1278&scaling=min-zoom&page-id=0%3A1" target="_blank"><img src="job-funnel.png"> <span>Job Funnel Dashboard</span> </a>
<input type="text" id="notes" value="notes"> <br/>
<label for="category">Job Stage:</label>
<select name="jobstage" id="jobstage">
<option value="Just interested.">Just interested.</option>
<option value="I applied!">I applied!</option>
<option value="Completed phone screen.">Completed phone screen.</option>
<option value="I interviewed!">I interviewed!</option>
<option value="Negotiation $$$">Negotiation $$$</option>
</select>
</div>
<div class="wrapper">
<div class="buttons">
<button id="save-tab">SAVE JOB</button>
<button id="clear-btn">CLEAR</button>
</div>
<ul id="displayList"></ul>
</div>
<script src= "index.js"></script>
</body>
</html>