-
Notifications
You must be signed in to change notification settings - Fork 1
/
dashboard.html
157 lines (135 loc) · 7.43 KB
/
dashboard.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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Dashboard</title>
<link rel="stylesheet" href="./assets/styles/dashboard.css" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
<script async src="https://maps.googleapis.com/maps/api/js?key=AIzaSyDn3LCIxS9Ir_2pZXsu-HuP0JdZJtOnPKw&callback=console.debug&libraries=maps,marker&v=beta">
</script>
<script src="https://kit.fontawesome.com/05be7076d9.js" crossorigin="anonymous"></script>
</head>
<body>
<header class="text-left p-4 custom-header">
<h3 class="h3 custom-logo">
<a class="navbar-brand me-auto" href="./index.html">
<i class="fa-solid fa-magnifying-glass" style="color: #e99607;"></i>
Job Search Tracker
</a>
</h3>
</header>
<main>
<section class="dashboard-section">
<div class="container-fluid mt-5 mb-5 ">
<div class="row justify-content-center">
<!-- Filters section -->
<div class="dropdownContainer col-lg-9 pt-2 mt-2 pb-5 ml-5 mr-5">
<div class="card align-items-center custom-card-border shadow"
style="background-image: linear-gradient(to right top, #0a704d, #489849, #91be35, #ebdd12);">
<div class="card-body text-center">
<h4 class="card-title m-5">FILTER MY JOB APPLICATION CARDS</h4>
<div class="btn-group mb-3">
<button class="btn btn-success shadow" type="button" id="map-btn">
Show companies on map
</button>
</div>
<div class="container">
<select class="form-select mb-3" id="jobTypeFilterBtn"
aria-label="Example select with button addon">
<option value="default" selected>Select job type</option>
<option value="Remote">Remote</option>
<option value="Hybrid">Hybrid</option>
<option value="Office">Office</option>
</select>
</div>
<div class="container">
<select class="form-select mb-3 mb-5" id="jobStageFilterBtn"
aria-label="Example select with button addon">
<option value="default" selected>Select job stage</option>
<option value="Applied">Applied</option>
<option value="Interview">Interview</option>
<option value="Rejected">Rejected</option>
</select>
</div>
</div>
</div>
</div>
<div class="container">
<div class="row justify-content-center">
<div class="col-md-8 text-center">
<button class="btn btn-success shadow mb-5 mt-3" id="btn-input" type="button">Create more cards</button>
</div>
</div>
</div>
<div class="row justify-content-center mb-4">
<h4 class="h4 text-center headline highlight">JOBS I APPLIED</h4>
</div>
<div class="row justify-content-center" id="cardsCreation"></div>
</div>
</div>
</section>
<section class="map-section" id="map-section">
<div class="container-fluid text-center py-3 my-2 map-container">
<h4 class="headline highlight">COMPANIES LOCATION</h4>
<hr class="hr" />
<div class="col-12" id="map" style="height: 400px;"></div>
</div>
</section>
<!-- <div class="modal fade" id="geoErrorModal" tabindex="-1" role="dialog" aria-labelledby="errorModalLabel"
aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="errorModalLabel">Error</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div> -->
<div class="modal fade" id="geoErrorModal" tabindex="-1" role="dialog" aria-labelledby="errorModalLabel" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="errorModalLabel">Error</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<!-- Error message will be dynamically updated here -->
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
</main>
<footer class="footer text-center py-3 px-4 custom-footer">
© 2024 All rights reserved. </br>
Coded by Rupesh Magar and Maria Yuzba
</footer>
<!-- jQuery -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<!-- Popper.js, then Bootstrap JS -->
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.11.7/dist/umd/popper.min.js"
integrity="sha384-zYPOMqeu1DAVkHiLqWBUTcbYfZ8osu1Nd6Z89ify25QV9guujx43ITvfi12/QExE"
crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha3/dist/js/bootstrap.min.js"
integrity="sha384-Y4oOpwW3duJdCWv5ly8SCFYWqFDsfob/3GkgExXKV4idmbt98QcxXYs9UoXAB7BZ"
crossorigin="anonymous"></script>
<script src="./assets/script/dashboard.js"></script>
</body>
</html>