-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.html
102 lines (99 loc) · 4.22 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<!DOCTYPE html>
<html>
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-130782039-2"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-130782039-2');
</script>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>BITS TimeTable Visualizer</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" media="screen" href="main.css" />
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
<link href="https://cdnjs.cloudflare.com/ajax/libs/select2/4.0.6-rc.0/css/select2.min.css" rel="stylesheet" />
<link rel="icon" href="favicon.png" sizes="24x24" type="image/png">
</head>
<body>
<div id="container">
<span id="title">BITS Time ‐ Table Visualizer</span>
<div id="input-container">
<div class="input-box">
<label>Course title:</label>
<input type="text" id="course-title" />
</div>
<div class="input-box">
<label>Classroom:</label>
<input type="text" id="classroom" />
</div>
<div class="input-box">
<label>Section and/or teacher:</label>
<input type="text" id="section" />
</div>
<div class="input-box">
<label>Select days:</label>
<select id="days" name="days[]" multiple="multiple">
<option value="1">Monday</option>
<option value="2">Tuesday</option>
<option value="3">Wednesday</option>
<option value="4">Thursday</option>
<option value="5">Friday</option>
<option value="6">Saturday</option>
<option value="7">Sunday</option>
</select>
</div>
<div class="input-box">
<label>Select hours:</label>
<select id="hours" name="hours[]" multiple="multiple">
<option value="1">1: 8:00 - 9:00</option>
<option value="2">2: 9:00 - 10:00</option>
<option value="3">3: 10:00 - 11:00</option>
<option value="4">4: 11:00 - 12:00</option>
<option value="5">5: 12:00 - 13:00</option>
<option value="6">6: 13:00 - 14:00</option>
<option value="7">7: 14:00 - 15:00</option>
<option value="8">8: 15:00 - 16:00</option>
<option value="9">9: 16:00 - 17:00</option>
<option value="10">10: 17:00 - 18:00</option>
<option value="11">11: 18:00 - 19:00</option>
</select>
</div>
<div id="buttons">
<button id="add-btn">Add</button>
<button id="undo-btn">Undo</button>
</div>
</div>
<span><i>Click on the cell to delete the added course</i></span>
<br>
<div id="timetable">
</div>
<div id="error">
</div>
<a id="star" class="floating" href="https://github.com/sarthak-sehgal/timetable-visualizer" target="_blank">
<img src="star.png" alt="star"/>
Star on GitHub
</a>
<a id="author" class="floating" href="https://sarthak-sehgal.github.io" target="_blank">
<img src="heart.png" alt="star"/>
Made by Sarthak Sehgal
</a>
<div id="author1" class="floating" href="#">
<img src="social.png" alt="star"/>
Promoted by Rahul Bubna
</div>
</div>
<div id="desktopView">
Please view on desktop.
</div>
<script
src="https://code.jquery.com/jquery-3.3.1.slim.min.js"
integrity="sha256-3edrmyuQ0w65f8gfBsqowzjJe2iM6n0nKciPUp8y+7E="
crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/select2/4.0.6-rc.0/js/select2.min.js"></script>
<script src="main.js"></script>
</body>
</html>