forked from Pezmc/CS-Timetable-to-iCal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (36 loc) · 1.58 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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>CS Timetable to iCal</title>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/jquery.steps.css">
<link rel="icon" href="./favicon.ico" type="image/x-icon" />
<meta property="og:type" content="website" />
<meta property="og:image" content="http://labs.pezcuckow.com/cstimetable/img/logo.jpg" />
</head>
<body>
<div class="wrap">
<div class="header"><h1>UoM CS Timetable Generator</h1></div>
<div id="wizard">
<h1>Year</h1>
<section><div id="year"><img src="img/loading.gif" class="loading" /></div></section>
<h1>Course</h1>
<section><div id="course"><img src="img/loading.gif" class="loading" /></div></section>
<h1>Semester</h1>
<section><div id="semester"><img src="img/loading.gif" class="loading" /></div></section>
<h1>Courses</h1>
<section><div id="courses"><img src="img/loading.gif" class="loading" /></div></section>
<h1>Result</h1>
<section><div id="result"><img src="img/loading.gif" class="loading" /></div></section>
</div>
<div class="footer">
Copyright © <a href="http://www.pezcuckow.com" target="_blank">Pez Cuckow</a>.<br />
You use this service at your own risk; I cannot accept responsibility for loss or damage caused by this service, or missing any lectures ☺!
</div>
</div>
<script src="js/main.min.js"></script>
</body>
</html>