-
Notifications
You must be signed in to change notification settings - Fork 0
/
Lab4-test_result.php
77 lines (76 loc) · 3.27 KB
/
Lab4-test_result.php
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TestResult</title>
<link rel="stylesheet" href="./css/main.css">
<link rel='stylesheet' href='https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css'>
</head>
<body>
<?php
include "menu.php";
?>
<main class="section">
<div class="container">
<h2 class="title-1">"Chase" test results</h2>
<div class="section-0" style="padding: 10px;">
<p style="text-align: center;">vrnelvbreilbverui</p>
</div>
<div class="test__results">
<table class="table" data-filter-control="true">
<thead>
<tr>
<th data-field="data1" class="header_table">Пользователь</th>
<th data-field="data4" class="header_table">№</th>
<th data-field="data3" class="header_table">Попытка 1</th>
<th data-field="data4" class="header_table">Результат</th>
<th data-field="data3" class="header_table">Попытка 2</th>
<th data-field="data4" class="header_table">Результат</th>
<th data-field="data3" class="header_table">Попытка 3</th>
<th data-field="data4" class="header_table">Результат</th>
<th data-field="data3" class="header_table">Попытка 4</th>
<th data-field="data4" class="header_table">Результат</th>
<th data-field="data3" class="header_table">Попытка 5</th>
<th data-field="data4" class="header_table">Результат</th>
</tr>
</thead>
<tbody id="rates">
<tr>
<td>Name</td>
<td>1</td>
<td>300 мс</td>
<td>Неверно</td>
<td>300 мс</td>
<td>Верно</td>
<td>300 мс</td>
<td>Верно</td>
<td>300 мс</td>
<td>Верно</td>
<td>300 мс</td>
<td>Верно</td>
</tr>
<tr>
<td>Name</td>
<td>2</td>
<td>300 мс</td>
<td>Неверно</td>
<td>300 мс</td>
<td>Верно</td>
<td>300 мс</td>
<td>Верно</td>
<td>300 мс</td>
<td>Верно</td>
<td>300 мс</td>
<td>Верно</td>
</tr>
</tbody>
</table>
</div>
</div>
</main>
<script src="./js/app.js"></script>
<script src="./js/menu.js"></script>
</body>
</html>