IP_PIbd-21_Potapov_Frontend/login.html

64 lines
2.4 KiB
HTML
Raw Normal View History

2023-10-13 10:49:08 +04:00
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script type="module" src="./node_modules/@popperjs/core/dist/umd/popper.min.js"></script>
<script type="module" src="./node_modules/bootstrap/dist/js/bootstrap.min.js"></script>
<link href="./node_modules/bootstrap/dist/css/bootstrap.min.css" rel="stylesheet" />
<link href="./node_modules/bootstrap-icons/font/bootstrap-icons.min.css" rel="stylesheet" />
<link rel="stylesheet" href="./static/css/base.css">
<link rel="stylesheet" href="./static/css/left-menu.css">
<link rel="stylesheet" href="./static/css/center.css">
<link rel="stylesheet" href="./static/css/post.css">
<link rel="stylesheet" href="./static/css/avatar.css">
2023-11-09 09:13:24 +04:00
<link rel="shortcut icon" href="./static/img/favicon.svg" type="image/svg+xml">
<title>Вход</title>
2023-10-13 10:49:08 +04:00
</head>
<body class="vh-100">
<header class="fixed-top">
<nav class="navbar">
<div class="container-fluid d-flex justify-content-between">
<a class="navbar-brand">
<span class="logo-small d-sm-none">нк</span>
<span class="logo-full d-none d-sm-block">неконтакте</span>
</a>
</div>
</nav>
</header>
<main class="px-1 px-sm-2 px-lg-4 py-2 py-sm-4 d-flex position-relative h-100">
<div class="block w-100 h-100 d-flex justify-content-center align-items-center d-none d-lg-flex">
<div class="logo-small" style="font-size: 6vw;">нк
</div>
</div>
<div class="block w-100 h-100 d-flex justify-content-center align-items-center">
<form id="login-form">
2023-10-13 10:49:08 +04:00
<legend class="text-center">Вход</legend>
<div class="mb-3">
<input type="text" class="form-control" id="inputLogin" placeholder="Логин">
</div>
<div class="mb-3">
<input type="password" class="form-control" placeholder="Пароль" id="inputPassword">
</div>
2023-10-13 11:28:14 +04:00
<button type="submit" class="btn btn-outline-secondary w-100 mb-3">Войти</button>
2023-10-13 10:49:08 +04:00
<div class="d-flex justify-content-between">
<a>
Забыли пароль?
</a>
<a>
Регистрация
</a>
</div>
</form>
</div>
</main>
<footer class="py-2 d-flex justify-content-center border-top border-dark fixed-bottom">
<span>&copy; <span id="current-year"></span> Неконтакте</span>
</footer>
</body>
<script>document.getElementById('current-year').innerHTML = new Date().getFullYear();</script>
</html>