-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
112 lines (111 loc) · 4.39 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
103
104
105
106
107
108
109
110
111
112
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" href="res/images/favicon.ico">
<link rel="stylesheet" href="res/css/styles.css">
<link href="https://fonts.googleapis.com/css?family=Livvic&display=swap" rel="stylesheet">
<title>My Dashboard</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="res/js/User.js"></script>
<script src="res/js/Course.js"></script>
<script src="res/js/script.js"></script>
</head>
<body>
<main>
<header>
<strong>Welcome to your dashboard!</strong>
</header>
<section id="container">
<section id="main">
<div class="content">
<div id="profile-container" class="tab active">
<div id="profile">
<div class="avatar">
<img src="res/images/me.png" id="picture" alt="My picture">
</div>
<div class="info">
<ul>
<li id="name">John Doe</li>
<li id="birthdate">11/10/1990</li>
<li id="faculty">Software Engineering</li>
</ul>
</div>
<div id="gpa">
<strong>2.75</strong>
</div>
<div class="clear-fix"></div>
</div>
</div>
<div id="courses-container" class="tab">
<h1 class="title">Courses</h1>
<table id="courses">
<thead>
<tr>
<th>#</th>
<th>Course Title</th>
<th>Semester</th>
<th>Grade</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>Agile software development</td>
<td>1</td>
<td>82</td>
</tr>
<tr>
<td>2</td>
<td>System modeling</td>
<td>1</td>
<td>85</td>
</tr>
<tr>
<td>3</td>
<td>Object-oriented programming</td>
<td>2</td>
<td>99</td>
</tr>
<tr>
<td>4</td>
<td>Estonian language Level A2</td>
<td>2</td>
<td>65</td>
</tr>
</tbody>
</table>
<br>
<br>
<div>
<button id="add-course-button" class="blue-button">+</button>
<span id="add-course">
<input class="input" type="text" placeholder="Course title" id="title">
<input class="input" type="number" min="1" max="8" placeholder="Semester" id="semester">
<input class="input" type="number" min="0" max="100" placeholder="Grade" id="grade">
<button class="green-button" id="save-course">Save</button>
<button class="grey-button" id="cancel-course">Cancel</button>
</span>
</div>
</div>
</div>
<div class="controls">
<button id="profile-button" class="pill active">Profile</button>
<button id="courses-button" class="pill">Courses</button>
</div>
</section>
</section>
<footer>
<ul class="links">
<li>
<a href="https://ois2.ut.ee/" target="_blank">OIS</a>
</li>
<li>
<a href="https://courses.cs.ut.ee/" target="_blank">Courses</a>
</li>
</ul>
</footer>
</main>
</body>
</html>