-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinstruction.html
67 lines (65 loc) · 2.28 KB
/
instruction.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
<!DOCTYPE html>
<html>
<style>
#button {
width: 6em;
border: 2px solid green;
background: #ffe;
border-radius: 5px;
}
a {
display: block;
width: 100%;
line-height: 2em;
text-align: center;
text-decoration: none;
border-radius: 5px;
}
a:hover {
color: red;
background: #eff;
}
</style>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<link rel="stylesheet" type="text/css" href="css/timetabling.css">
<title>instruction</title>
</head>
<body>
<div id="main">
<div id="header">
<div id="widgetBar">
<div class="logo">
<img align="left" src="logo.jpg" alt="logo" width="300" height="100">
</div>
<div class="button">
<button class="btn login" id="logout" onclick="javascript:location.href='index.html'">Logout</button>
<!--<script src="logout.js"></script>-->
</div>
<div class="button">
<button class="btn login" id="aboutUs" onclick="javascript:location.href='aboutUs.html'">About us</button>
</div>
<div class="button">
<button class="btn login" id="My Timetable" onclick="javascript:location.href='myTimetable.html'">My timetable</button>
</div>
<div class="button">
<button class="btn login" id="instruction" onclick="javascript:location.href='instruction.html'">Swap class</button>
</div>
</div>
<h1>Instruction:
</h1>
<p>1. You can only perform the add/ drop form once <br/>2. Go to the file below in instruction tab to see all the course and time schedule the course have<br/>3. Go to the swap tab to perform fill in the add/ drop form<br/>4. After you fill in the form, wait for a few days than you can view your own timetable</p>
<b>The master time table:</b>
<p>View all the schedule of courses you need to study, choose your most desire timeslot</p>
<p><iframe src="https://drive.google.com/file/d/17C1eVybCFAjkk22C7AXI_1ftJe00HuLO/preview" width="640" height="480"></iframe></p>
<form action="swap.html">
<input type="submit" value="continue">
</form>
<div id="footer">
<hr>
<p id="footerText">Group 18 The time tabling system</p>
</div>
</div>
</div>
</body>
</html>