-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
61 lines (61 loc) · 2.93 KB
/
index.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
<!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 href="styles/bootstrap-5.0.1/css/bootstrap.min.css" rel="stylesheet" type="text/css" />
<link href="styles/fontAwesome/css/all.min.css" rel="stylesheet" />
<link href="styles/style.css" rel="stylesheet">
<title>Med Tech</title>
</head>
<body>
<header>
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<div class="container-fluid container">
<a class="navbar-brand" href="main.html">
<i class="fas fa-heartbeat"></i>
Интеллмед
</a>
<div class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-bs-toggle="dropdown" aria-expanded="false">
Иванов И.И.
</a>
<ul class="dropdown-menu" aria-labelledby="navbarDropdown">
<li><a class="dropdown-item" href="expertise.html">Документы</a></li>
<li><a class="dropdown-item" href="analytics.html">Аналитика</a></li>
<li><hr class="dropdown-divider"></li>
<li><a class="dropdown-item" href="index.html">Настройки</a></li>
</div>
</div>
</nav>
</header>
<div class="main-login">
<div class="container">
<form class="login">
<div class="mb-3">
<label for="exampleInputEmail1" class="form-label">Пользователь</label>
<select class="form-select" aria-label="Default select example">
<option selected>Иванов И.И.</option>
<option value="1">Петров П.П.</option>
<option value="2">Сергеев С.С.</option>
<option value="3">Антонова И.И.</option>
</select>
</div>
<div class="mb-3">
<label for="exampleInputPassword1" class="form-label">Пароль</label>
<input type="password" class="form-control" id="exampleInputPassword1">
</div>
<div class="mb-3 form-check">
<input type="checkbox" class="form-check-input" id="exampleCheck1">
<label class="form-check-label" for="exampleCheck1">Запомнить пароль</label>
</div>
<div style="align-items: center;">
<a href="main.html" class="btn btn-primary">Войти</a>
</div>
</form>
</div>
</div>
<script src="styles/bootstrap-5.0.1/js/bootstrap.min.js"></script>
</body>
</html>