-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
40 lines (38 loc) · 1.24 KB
/
index.html
File metadata and controls
40 lines (38 loc) · 1.24 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<link rel="stylesheet" href="main.css">
</head>
<body>
<div class="admin-panel">
<div class="admin-panel__form">
<input id="admin-panel__username">
<select id="admin-panel__department">
<option value="Разработка">Разработка</option>
<option value="Бухгалтерия">Бухгалтерия</option>
<option value="Менеджмент">Менеджмент</option>
</select>
<button id="admin-panel__save">Сохранить</button>
</div>
<table align="center" border="1">
<thead>
<tr>
<th>Имя пользователя</th>
<th>Отдел</th>
<th>Дата создания записи</th>
<th>Дата обновления записи</th>
<th></th>
<th></th>
</tr>
</thead>
<tbody id="admin-panel__table">
</tbody>
</table>
</div>
<script type="text/javascript" src="arrays-objects.js"></script>
<script type="text/javascript" src="CustomArray.js"></script>
<script type="text/javascript" src="admin-panel.js"></script>
</body>
</html>