-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathindex.html
More file actions
306 lines (294 loc) · 12.8 KB
/
Copy pathindex.html
File metadata and controls
306 lines (294 loc) · 12.8 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
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
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta name="title" content="SUchedule"/>
<meta name="description" content="This website allows Sabancı University students to create their schedule with a
friendly user interface."/>
<meta name="keywords" content="Schedule, Sabancı Universitesi, Sabanci University, Suchedule"/>
<meta name="author" content="Adnan Burak Ayaz"/>
<meta name="owner" content="Adnan Burak Ayaz"/>
<meta name="copyright" content="(c) 2018"/>
<meta property="og:site_name" content="SUchedule">
<meta property="og:title" content="SUchedule" />
<meta property="og:description" content="This website allows Sabancı University students to create their schedule
with a friendly user interface." />
<meta property="og:image" itemprop="image" content="favicon.ico">
<meta property="og:type" content="website" />
<title>SUchedule</title>
<link rel="stylesheet" href="font/animation.min.css">
<link rel="stylesheet" href="font/fontello.min.css">
<link rel="stylesheet" href="css/jquery.modal.min.css">
<link rel="stylesheet" href="css/suchedule.min.css">
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
<link rel="icon" href="favicon.ico" type="image/x-icon"/>
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon"/>
<script src="https://kit.fontawesome.com/6fdf0c8f62.js" crossorigin="anonymous"></script>
</head>
<body>
<header>
<div id="logo">SUchedule</div>
<div id="about-button" class="icon-help button"></div>
<div id="clear-button" class="icon-trash button">Clear</div>
<div id="copy-button" class="icon-clipboard button">Copy Crn</div>
</header>
<div id="menu">
<div id="menu-toggle" class="icon-menu button"></div>
<div class="menu-item" id="search-box-container">
<input id="search-box" title="search" type="text" placeholder="Search for">
<select id="search-category">
<option value="name">Course Name</option>
<option value="instructor">Instructor</option>
</select>
</div>
<div id="day-filter" class="menu-item">
<div id="day-filter-label" class="filter-icon icon-calendar">
</div>
<div id="day-filter-selections">
<input id="day-filter-0" type="checkbox" checked>
<label for="day-filter-0">Mon</label>
<input id="day-filter-1" type="checkbox" checked>
<label for="day-filter-1">Tue</label>
<input id="day-filter-2" type="checkbox" checked>
<label for="day-filter-2">Wed</label>
<input id="day-filter-3" type="checkbox" checked>
<label for="day-filter-3">Thu</label>
<input id="day-filter-4" type="checkbox" checked>
<label for="day-filter-4">Fri</label>
</div>
</div>
<div id="course-list-shadow" class="menu-item"></div>
<div id="course-list" class="menu-item loading"></div>
</div>
<div id="main-content">
<table id="schedule">
<tr>
<th>-</th>
<th class="day-cell">Monday</th>
<th class="day-cell">Tuesday</th>
<th class="day-cell">Wednesday</th>
<th class="day-cell">Thursday</th>
<th class="day-cell">Friday</th>
</tr>
<tr>
<td class="hour-cell">08:40</td>
<td class="class-cell"></td>
<td class="class-cell"></td>
<td class="class-cell"></td>
<td class="class-cell"></td>
<td class="class-cell"></td>
</tr>
<tr>
<td class="hour-cell">09:40</td>
<td class="class-cell"></td>
<td class="class-cell"></td>
<td class="class-cell"></td>
<td class="class-cell"></td>
<td class="class-cell"></td>
</tr>
<tr>
<td class="hour-cell">10:40</td>
<td class="class-cell"></td>
<td class="class-cell"></td>
<td class="class-cell"></td>
<td class="class-cell"></td>
<td class="class-cell"></td>
</tr>
<tr>
<td class="hour-cell">11:40</td>
<td class="class-cell"></td>
<td class="class-cell"></td>
<td class="class-cell"></td>
<td class="class-cell"></td>
<td class="class-cell"></td>
</tr>
<tr>
<td class="hour-cell">12:40</td>
<td class="class-cell"></td>
<td class="class-cell"></td>
<td class="class-cell"></td>
<td class="class-cell"></td>
<td class="class-cell"></td>
</tr>
<tr>
<td class="hour-cell">13:40</td>
<td class="class-cell"></td>
<td class="class-cell"></td>
<td class="class-cell"></td>
<td class="class-cell"></td>
<td class="class-cell"></td>
</tr>
<tr>
<td class="hour-cell">14:40</td>
<td class="class-cell"></td>
<td class="class-cell"></td>
<td class="class-cell"></td>
<td class="class-cell"></td>
<td class="class-cell"></td>
</tr>
<tr>
<td class="hour-cell">15:40</td>
<td class="class-cell"></td>
<td class="class-cell"></td>
<td class="class-cell"></td>
<td class="class-cell"></td>
<td class="class-cell"></td>
</tr>
<tr>
<td class="hour-cell">16:40</td>
<td class="class-cell"></td>
<td class="class-cell"></td>
<td class="class-cell"></td>
<td class="class-cell"></td>
<td class="class-cell"></td>
</tr>
<tr>
<td class="hour-cell">17:40</td>
<td class="class-cell"></td>
<td class="class-cell"></td>
<td class="class-cell"></td>
<td class="class-cell"></td>
<td class="class-cell"></td>
</tr>
<tr>
<td class="hour-cell">18:40</td>
<td class="class-cell"></td>
<td class="class-cell"></td>
<td class="class-cell"></td>
<td class="class-cell"></td>
<td class="class-cell"></td>
</tr>
</table>
</div>
<div id="notifications">
<div id="notify-about" class="notification" style="display: none;">
<div class="notification-header">
<div class="notification-header-text">About (?)</div>
<div class="icon-cancel shake-on-hover button"></div>
</div>
<div class="notification-content">
<p>I am Burak, a CS student at Sabancı University. I've built this project with the hopes of making
the course registration period easier for SU students.</p>
<p>Feel free to contact me about your suggestions:</p>
<p>bayaz@sabanciuniv.edu</p>
<p>Support me on GitHub:</p>
<iframe style="display:inline-block;"
src="https://ghbtns.com/github-btn.html?user=aburakayaz&type=follow&count=true" frameborder="0"
scrolling="0" width="170px" height="20px"></iframe>
<iframe src="https://ghbtns.com/github-btn.html?user=aburakayaz&repo=suchedule&type=star&count=true"
frameborder="0" scrolling="0" width="170px" height="20px"></iframe>
<iframe style="display:inline-block;"
src="https://ghbtns.com/github-btn.html?user=aburakayaz&repo=suchedule&type=watch&count=true&v=2"
frameborder="0" scrolling="0" width="170px" height="20px"></iframe>
</div>
<div class="notification-button button">Thank You!</div>
</div>
<div id="notify-cookies" class="notification" style="display: none;">
<!-- <div class="notification-header">
<div class="notification-header-text">Cookies!</div>
<div class="icon-cancel shake-on-hover button"></div>
</div>
<div class="notification-content">
<p>This website uses cookies to save the state of your schedule. By using this website, you will be
consenting to the usage of
cookies.</p>
</div> -->
<div class="notification-header">
<div class="notification-header-text">Mobile App</div>
<div class="icon-cancel shake-on-hover button"></div>
</div>
<div class="notification-content">
<p> SUchedule Mobile App has been released. You can download the SUchedule
Mobile App, which has new features such as offline mode, from the App Store
and Google Play Store.</p>
<div class="market"><a class="market-link" href="https://play.google.com/store/apps/details?id=com.suchedule"><i class="fab fa-google-play"></i> Google Play Store</a></div>
<div class="market"><a class="market-link" href="https://apps.apple.com/tr/app/suchedule/id1587334993"><i class="fab fa-app-store"></i> App Store</a></div>
</div>
<div class="notification-button button">I Understand</div>
</div>
<div id="notify-clear" class="notification" style="display: none;">
<div class="notification-header">
<div class="notification-header-text">Are You Sure?</div>
<div class="icon-cancel shake-on-hover button"></div>
</div>
<div class="notification-content">
<p>Are you sure you want to clear your schedule?</p>
</div>
<div class="notification-button button">Yes, I am pretty sure.</div>
</div>
<div id="notify-copied" class="notification" style="display: none;">
<div class="notification-header">
<div class="notification-header-text">Copied!</div>
<div class="icon-cancel shake-on-hover button"></div>
</div>
<div class="notification-content">
<p>You can CTRL + V anywhere to see your crns.</p>
</div>
</div>
<div id="notify-copy-fail" class="notification" style="display: none;">
<div class="notification-header">
<div class="notification-header-text">Couldn't Copy</div>
<div class="icon-cancel shake-on-hover button"></div>
</div>
<div class="notification-content">
<p></p>
</div>
<div class="notification-button button">Ok, I've done it myself.</div>
</div>
<div id="notify-data-updated" class="notification" style="display: none;">
<div class="notification-header">
<div class="notification-header-text">Courses Have Been Updated</div>
<div class="icon-cancel shake-on-hover button"></div>
</div>
<div class="notification-content">
<p>Sorry for clearing your schedule, but what's the use for an outdated schedule anyways?</p>
</div>
<div class="notification-button button">Apology Accepted</div>
</div>
</div>
<div id="google-calendar-modal" class="modal">
<h3>Add current courses to your Google Calendar</h3>
Notifications:
<div id="notification-area">
</div>
<div id="unauthorized-area">
<button id="authorize-button" class="icon-link-ext-alt modal-button">Sign-in</button>
</div>
<div id="authorized-area">
<div id="current-google-calendar">
<div id="calendar-add-area">
<label for="current-week">
Current week of the Semester:
<input id="current-week" type="number" max="14" min="1" value="1"/>
</label>
<button id="add-button" class="icon-ok modal-button">Add Calendar</button>
</div>
<div id="calendar-delete-area">
<span>You already have a calendar for this term named:</span>
<p id="current-calendar-name"></p>
<button id="delete-button" class="icon-trash modal-button">Delete Calendar</button>
</div>
</div>
<button id="signout-button" class="icon-cancel modal-button">Sign Out</button>
</div>
</div>
<script src="js/jquery-3.3.1.min.js"></script>
<script src="js/jquery.modal.min.js"></script>
<script src="js/clipboard.min.js"></script>
<script src="js/suchedule.min.js"></script>
<script src="https://apis.google.com/js/api.js"></script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-113204083-2"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'UA-113204083-2');
</script>
</body>
</html>