61 lines
1.9 KiB
HTML
61 lines
1.9 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en" data-bs-theme="light">
|
|
<head>
|
|
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
|
|
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<title>Авторизация</title>
|
|
|
|
<link
|
|
href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css"
|
|
rel="stylesheet"
|
|
/>
|
|
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"></script>
|
|
|
|
<!-- Custom styles for this template -->
|
|
<link
|
|
href="https://getbootstrap.com/docs/5.3/examples/sign-in/sign-in.css"
|
|
rel="stylesheet"
|
|
/>
|
|
</head>
|
|
<body class="d-flex align-items-center py-4 bg-body-tertiary">
|
|
<main class="form-signin w-100 m-auto">
|
|
<form name="auth" action="" method="post">
|
|
<h1 class="h3 mb-3 fw-normal">Авторизация</h1>
|
|
|
|
<div class="form-floating">
|
|
<input
|
|
class="form-control"
|
|
name="login"
|
|
placeholder="test"
|
|
type="text"
|
|
required
|
|
/>
|
|
<label for="floatingInput">Имя пользователя</label>
|
|
</div>
|
|
<div class="form-floating">
|
|
<input
|
|
type="password"
|
|
class="form-control"
|
|
name="password"
|
|
placeholder="tset"
|
|
required
|
|
/>
|
|
<label for="floatingPassword">Пароль</label>
|
|
</div>
|
|
|
|
<div class="my-3">
|
|
<select class="form-select" required="" name="access">
|
|
<option value="" selected="selected">Уровень доступа</option>
|
|
<option value="internal_users">Внутренний</option>
|
|
<option value="external_users">Внешний</option>
|
|
</select>
|
|
</div>
|
|
<button class="w-100 btn btn-lg btn-success" type="submit">Вход</button>
|
|
</form>
|
|
</main>
|
|
</body>
|
|
</html>
|