-
Notifications
You must be signed in to change notification settings - Fork 2
/
popup.html
93 lines (86 loc) · 3.97 KB
/
popup.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
84
85
86
87
88
89
90
91
92
93
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Job Tracker</title>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="/styles.css">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-wEmeIV1mKuiNpC+IOBjI7aAzPcEZeedi5yW5f2yOq55WWLwNGmvvx4Um1vskeMj0" crossorigin="anonymous">
</head>
<body>
<!-- header -->
<div class="modal-header">
<h2 class="logo">
<img src="images/logo.png" alt="logo-icon" class="logo-icon">Janus
</h2>
<button class="btn btn-outline-light" id="cog"><i class="fa fa-cog fa-2x"></i></button>
</div>
<!-- settings page -->
<div class="settings_page" id="settings_page" style="display: none;">
<div class="row">
<button class="btn btn-outline-light custom_column" style="width: 10px;" id="back"><i class="fa fa-arrow-left"></i></button>
<div class="custom_column" style="flex-grow:5;">Settings</div>
</div>
<div class="custom_row">My Roles</div>
<div class="custom_row"><input type="text" class="form-control" placeholder="Software Engineer"></div>
<div class="custom_row">E-mail</div>
<div class="custom_row"><input type="email" class="form-control" placeholder="abc@gmail.com" id="email" /></div>
<button type="button" class="btn btn-success" id= "saveEmail">Save Email</button>
<div class="custom_row">Notification Frequency</div>
<div class="form-check">
<input class="form-check-input" type="radio" name="selection" id="weekly">
<label class="form-check-label" for="weekly">
Weekly
</label>
</div>
<div class="form-check">
<input class="form-check-input" type="radio" name="selection" id="fortnightly" checked>
<label class="form-check-label" for="fortnightly">
Fortnightly
</label>
</div>
<div class="form-check">
<input class="form-check-input" type="radio" name="selection" id="monthly" checked>
<label class="form-check-label" for="monthly">
Monthly
</label>
</div>
</div>
<!-- scraped data -->
<section class="data_preview" id="data_preview" style="display: none;" >
<div class="custom_row" style="justify-content: center; font-weight: 1000;">Here's What we gathered</div>
<div class="custom_row" style="padding-left: 10px;">Job Title</div>
<input type="text" class="custom_box" id="job-title"/>
<div class="custom_row" style="padding-left: 10px;">Company</div>
<input type="text" class="custom_box" id="company-name"/>
<div class="custom_row" style="padding-left: 10px;">Location</div>
<input type="text" class="custom_box" id="job-location"/>
<div class="button">
<button type="button" class="btn btn-outline-info" id="saveApplication">Save Application</button>
</div>
</section>
<!-- index page -->
<section id="index">
<div class="alert alert-success" role="alert" id="success-alert" style="display: none;" >
Application saved
</div>
<div class="modal-content">
<p>Easily access your job applications</p>
</div>
<a href="list.html" target="_blank">
<div class="button">
<button type="button" class="btn btn-outline-info" id="view">View Applications</button>
</div>
</a>
<div class="button">
<button class="btn btn-outline-success" id= "tracker">Track Application</button>
</div>
</section>
<script src="script.js"></script>
<script src="bundle.js"></script>
</body>
</html>