-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcoverShift.html
More file actions
56 lines (45 loc) · 2.31 KB
/
coverShift.html
File metadata and controls
56 lines (45 loc) · 2.31 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<script src="https://code.jquery.com/jquery-3.4.1.min.js" integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo=" crossorigin="anonymous"></script>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="./css/forum.css">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Lato">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Montserrat">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/coverShift.css">
<title>forum</title>
</head>
<body>
<!-- Navbar -->
<div class="w3-top">
<div class="w3-bar w3-white w3-card w3-left-align w3-large">
<a href="index.html" class="w3-bar-item w3-button w3-hide-small w3-padding-large">Home</a>
<a href="availability.html" class="w3-bar-item w3-button w3-hide-small w3-padding-large">Availability</a>
</div>
</div>
<div class="ListOfTAs">
<label class="positionLabel">Please select the shift you would like to change</label>
<select name="TAList" id="ListOfTAs1"></select>
</div>
<div class="ListOfTAs">
<label class="positionLabel">Please select the shift you would like to swap with</label>
<select name="TAList" id="ListOfTAs2"></select>
</div>
<div id="wrap">
<button id="submit">Submit</button>
</div>
<script src=js/main.js></script>
<script src=js/shifts.js></script>
<script>
document.addEventListener('DOMContentLoaded', populateTAShifts, false);
</script>
</body>
</html>