1/2 partof statistic.html

This commit is contained in:
Kiselev Igor 2021-03-11 19:03:45 +03:00
parent 21b29fdc11
commit 9b6238fa45

View File

@ -0,0 +1,88 @@
<!DOCTYPE html>
<html lang="ru" class="h-100">
<head>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<title>Statistic</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/5.0.0-alpha1/css/bootstrap.min.css"
integrity="sha384-r4NyP46KrjDleawBgD5tp8Y7UzmLA05oM1iAEQ17CSuDqnUK2+k9luXQOfXJCJ4I" crossorigin="anonymous">
<style>
.bd-placeholder-img {
font-size: 1.125rem;
text-anchor: middle;
-webkit-user-select: none;
-moz-user-select: none;
user-select: none;
}
@media (min-width: 768px) {
.bd-placeholder-img-lg {
font-size: 3.5rem;
}
}
</style>
</head>
<body>
<header>
<!-- Fixed navbar -->
<nav
class="navbar navbar-expand-md fixed-top"
>
<ul
class="navbar-nav me-auto mb-2 mb-md-0 justify-content-between fixed-top"
style="background-color:#f2f2f2;"
>
<div class="mx-4">
<h1>Logo</h1>
</div>
</ul>
</nav>
</header>
<main class="pt-5">
<div class="mt-5">
<div class="container-fluid" style="font-size:2.5rem">
<form class="row g-3">
<div class="col-auto">
<input type="text"readonly class="form-control-plaintext text-primary" id="staticEmail2"
value="Введите email пользователя">
</div>
<div class="col-auto">
<input type="email" class="form-control" id="inputEmail" placeholder="example@ngenix.ru">
</div>
</form>
<form class="row g-3 mt-2">
<div class="col-auto">
<p class="p text-primary"> Выберите интервалы времени работы</p>
</div>
<div class="col-auto">
<input type="radio" class="btn-check" name="options" id="option1" autocomplete="off">
<label class="btn btn-secondary text-primary bg-white" for="option1">Дни</label>
<input type="radio" class="btn-check" name="options" id="option2" autocomplete="off">
<label class="btn btn-secondary text-primary bg-white" for="option2">Месяцы</label>
</div>
<div class="col-auto">
</div>
</form>
</div>
</div>
</main>
</body>
</html>