-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
100 lines (91 loc) · 4.42 KB
/
index.html
File metadata and controls
100 lines (91 loc) · 4.42 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
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
<!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">
<link rel="stylesheet" href="./css/main.css">
<script src="./dist/bundle.js" defer></script>
<title>JSON-server</title>
</head>
<body>
<header>
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<div class="container-fluid">
<a class="navbar-brand" href="/">JSON-Server</a>
</div>
</nav>
</header>
<main>
<section class="section-form">
<div class="container">
<div class="row">
<div class="col col-12 col-lg-4 col-md-6 col-sm-8 offset-0 offset-lg-4 offset-md-3 offset-sm-2">
<form>
<div class="mb-3">
<label for="form-name" class="form-label">Имя</label>
<input type="text" class="form-control" id="form-name" required aria-describedby="emailHelp">
</div>
<div class="mb-3">
<label for="form-email" class="form-label">Email</label>
<input type="email" class="form-control" id="form-email" required>
</div>
<div class="form-check form-switch mb-3">
<input class="form-check-input" type="checkbox" role="switch" id="form-children">
<label class="form-check-label" for="form-children">Есть ли дети?</label>
</div>
<div class="d-grid gap-2">
<button class="btn btn-success" type="submit">Сохранить</button>
</div>
</form>
</div>
</div>
</div>
</section>
<section class="section-table">
<div class="container">
<div class="row mb-3 d-flex justify-content-between">
<div class="col col-12 col-lg-4 col-md-6 mb-3 mb-lg-0">
<div class="input-group flex-nowrap">
<span class="input-group-text" id="search-input-group">
<i class="bi-search"></i>
</span>
<input
type="text"
class="form-control"
placeholder="Поиск"
aria-label="Поиск"
id="search-input"
aria-describedby="search-input-group">
</div>
</div>
<div class="col col-12 col-lg-4 col-md-6 d-flex justify-content-end">
<div class="btn-group" role="group" aria-label="Basic example">
<button type="button" class="btn btn-info" id="btn-isChildren">С детьми</button>
<button type="button" class="btn btn-info" id="btn-isPermissions">С доступом</button>
<button type="button" class="btn btn-info" id="btn-isAll">Все</button>
</div>
</div>
</div>
<div class="table-responsive">
<table class="table">
<thead class="table-dark">
<tr>
<th scope="col">#</th>
<th scope="col">Имя</th>
<th scope="col">Email</th>
<th scope="col" id="sort-is-children">Наличие детей</th>
<th scope="col">Доступ</th>
<th scope="col">Действия</th>
</tr>
</thead>
<tbody id="table-body">
</tbody>
</table>
<p class="error_Mes">Произошла ошибка, данных нет!</p>
</div>
</div>
</section>
</main>
</body>
</html>