-
Notifications
You must be signed in to change notification settings - Fork 0
/
test-info.html
96 lines (87 loc) · 3.74 KB
/
test-info.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
<!DOCTYPE html>
<html lang="sk">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>EduKan - online testy a skúšania</title>
<link rel="icon" href="resources/favicon/edukan-favicon.png" type="image/png" sizes="any">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css"
integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="css/test-info-style.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js"
integrity="sha512-894YE6QWD5I59HgZOGReFYm4dnWc1Qt5NtvYSaNcOP+u1T9qYdvdihz0PPSiiqn/+/3e7Jo4EaG7TubfWGUrMQ=="
crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js"
integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q"
crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js"
integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl"
crossorigin="anonymous"></script>
<script src="javascript/Date.format.min.js"></script>
<script src="javascript/test-info-script.js"></script>
</head>
<body>
<header id="main-header">
<img id="edukan" draggable="false" src="resources/pictures/educan/edukan.png" width="550" alt="tukan">
<div id="notifications">
<div id="notification-button" onclick="showNotifications()">
Notifikácie
</div>
<div id="notifications-text">
</div>
</div>
</header>
<section>
<div onclick="teacherHomescreen()" id="back-button">
Späť
<img id="left-arrow" src="resources/pictures/left-arrow.svg" alt="leftarrow">
</div>
<div id="login-div">
<span id="login-name"></span>
<div id="logout-button" data-toggle="tooltip" title="Odhlásiť sa" onclick="logout()"><img
id="logout-image"
src="resources/pictures/ucitel/logout.svg"
width="20" height="20"
alt="login"></div>
</div>
<header id="section-header" class="section-content">
<h2 id="test-name" class="section-h2">
Názov testu
</h2>
<div id="exports">
<div class="export-buttons" data-toggle="tooltip" title="Export do PDF" onclick="">
<img class="export-image" src="resources/pictures/test/pdf.svg" width="32" height="32" alt="pdf">
</div>
<div class="export-buttons" data-toggle="tooltip" title="Export do CSV" onclick="">
<img class="export-image" src="resources/pictures/test/csv.svg" width="32" height="32" alt="pdf">
</div>
</div>
</header>
<div id="students" class="section-content table-responsive">
<table class="table table-light">
<thead class="bg-info text-white">
<tr>
<th>
Identifikačné čislo
</th>
<th>
Meno
</th>
<th>
Priezvisko
</th>
<th>
Zostávajúci čas
</th>
</tr>
</thead>
<tbody id="students-tbody">
</tbody>
</table>
</div>
</section>
</body>
</html>