-
Notifications
You must be signed in to change notification settings - Fork 0
/
table.html
54 lines (54 loc) · 2.31 KB
/
table.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
<!DOCTYPE html>
<html>
<head>
<title>Регистрация участников шахматного турнира</title>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="table.css">
</head>
<body>
<form>
<table class="players">
<tbody>
<tr>
<td>№</td>
<td>Фамилия</td>
<td>Имя</td>
<td class="centered">Д</td>
<td class="centered">М</td>
<td class="centered">Год</td>
<td>Город</td>
<td class="centered">Рейтинг</td>
<td>Звание</td>
<td class="centered">ID FIDE</td>
</tr>
</tbody>
</table>
<div class="tournament-info">
<div class="tournament-name">
<label for="tournament-name">Название турнира</label>
<input type="text" id="tournament-name" name="tournament_name" maxlength="63">
</div>
<div class="tournament-place">
<label for="tournament-place">Место проведения</label>
<input type="text" id="tournament-place" name="tournament_place" maxlength="63">
</div>
<div class="chief-arbiter">
<label for="chief-arbiter">Главный судья</label>
<input type="text" id="chief-arbiter" name="chief_arbiter" maxlength="63">
</div>
<div class="tournament-rounds-count">
<label for="tournament-rounds-count">Количество туров</label>
<input type="number" id="tournament-rounds-count" name="tournament_rounds_count" min="1" max="64" value="9">
</div>
</div>
<div class="buttons">
<button class="invert-selection">Инвертировать выделение</button>
<button class="delete-selected">Удалить выделенные</button>
<button class="save">Сохранить</button>
<button class="clean">Очистить</button>
</div>
</form>
<div class="message-board"></div>
<script type="text/javascript" src="table.js"></script>
</body>
</html>