-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
101 lines (97 loc) · 3.05 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
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="res/images/Favicon.ico">
<title>My Dashboard</title>
<style>
footer {
padding: 3px;
background-color: Grey;
color: white;
}
</style>
</head>
<body>
<header>
<section>
<div>
<img src="res/images/me.png" width="128" height="128" alt="My picture">
</div>
<div>
<ul>
<li>Markus Karl Mägi</li>
<li>18/09/2023</li>
<li> Software Engineering </li>
</ul>
</div>
<div>
<strong>2.65</strong>
</div>
</section>
<section>
<h1>Courses</h1>
<form class="course-form" id="courseForm">
<label for="courseTitle">Course Title:</label> <br>
<input type="text" id="courseTitle" name="courseTitle"> <br>
<label for="semester">Semester</label> <br>
<select id="semester" name="semester">
<option value="Fall">Fall</option>
<option value="Spring">Spring</option>
</select> <br>
<label><b>Attendace</b></label> <br>
<input type="radio" name="food" /> : Virtual Attendace<br />
<input type="radio" name="food" /> : Physical Attendace<br />
<button type="button" onclick="addCourse()">Add Course</button>
</form>
<table>
<thead>
<tr>
<th>#</th>
<th>Course Title</th>
<th>Semester</th>
<th>Grade</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td><a href="https://courses.cs.ut.ee/2021/ASD/fall" target="_blank">Agile software development</a></td>
<td>fall</td>
<td>82</td>
</tr>
<tr>
<td>2</td>
<td><a href="https://courses.cs.ut.ee/2020/sm/fall" target="_blank">Systems modelling</a></td>
<td>fall</td>
<td>85</td>
</tr>
<tr>
<td>3</td>
<td><a href="https://courses.cs.ut.ee/2023/RE/fall/Main/Lectures" target="_blank">Requirements Engineering</a></td>
<td>fall</td>
<td>99</td>
</tr>
<tr>
<td>4</td>
<td><a href="https://courses.cs.ut.ee/2021/HCI/spring" target="_blank">Human Computer Interaction</a></td>
<td>fall</td>
<td>65</td>
</tr>
</tbody>
</table>
</section>
<strong>Welcome to your dashboard!</strong>
<footer>
<ul>
<li>
<a href="https://ois2.ut.ee/" target="_blank">OIS</a>
</li>
<li>
<a href="https://courses.cs.ut.ee/">Courses</a>
</li>
</ul>
</footer>
</header>
</body>
</html>