87 lines
3.6 KiB
HTML
87 lines
3.6 KiB
HTML
<html lang="ru">
|
||
<head>
|
||
<meta charset="utf-8">
|
||
<title>Моя страница</title>
|
||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||
<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/@fortawesome/fontawesome-free/css/all.min.css" rel="stylesheet"/>
|
||
<link rel="stylesheet" href="./css/style.css">
|
||
</head>
|
||
<body>
|
||
<header>
|
||
<nav class="navbar navbar-expand-md navbar-dark">
|
||
<div class="container-fluid">
|
||
<a class="navbar-brand" href="/">
|
||
<img class="logo" src="./images/assets/Image1.png" alt="logo">
|
||
<a class="Name" href="./index.html">UlRent</a>
|
||
|
||
</a>
|
||
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav"
|
||
aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
|
||
<span class="navbar-toggler-icon"></span>
|
||
</button>
|
||
<div class="navbar-collapse collapse justify-content-end" id="navbarNav">
|
||
<div class="navbar-nav pe-5">
|
||
<a class="nav-link" href="./index.html">Главная</a>
|
||
<a class="nav-link" href="./page-help.html">Помощь</a>
|
||
|
||
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</nav>
|
||
</header>
|
||
|
||
|
||
<main class="container-fluid wrapper mx-auto">
|
||
<div class="" style="text-align: center; color: white; font-size: 42px;">
|
||
<p>Войти в профиль</p>
|
||
</div>
|
||
|
||
<div class="row justify-content-center">
|
||
<form class="col-md-6 m-0">
|
||
<form id="items-form1" class="needs-validation" novalidate>
|
||
<div class="mb-2 ps-4 pe-4">
|
||
<label class="form-label" for="email">Ваш логин</label>
|
||
<input data-required="true" id="login" name="login" class="form-control" type="login" placeholder="Логин" required>
|
||
<div id="emailErrors"> </div>
|
||
</div>
|
||
<div class="mb-2 ps-4 pe-4">
|
||
<label class="form-label" for="pass">Пароль</label>
|
||
<input data-required="true" id="password" data-max-length="18" data-min-length="2" name="password" class="form-control" type="password" placeholder="от 6 до 16 символов" required>
|
||
</div>
|
||
|
||
<div class="d-grid gap-2 col-8 pt-5 mx-auto w-100" style="padding-top: 35px;">
|
||
|
||
<button type="submit" class="btn btn-light mx-auto" style="width: 10rem; color: red;" >
|
||
|
||
<a class="flex w-100" href="bulletinBoard.html" style="color:red">Войти</a>
|
||
</button>
|
||
|
||
</div>
|
||
</form>
|
||
</form>
|
||
</div>
|
||
|
||
<div class="row justify-content-center pt-5 w-25 mx-auto">
|
||
<img src="./images/assets/Image12.png" alt="im1" class="imgg1">
|
||
</div>
|
||
|
||
</main>
|
||
|
||
<footer class="footer mx-auto">
|
||
© 2023 UlRent Белянин Никита ПИбд-21 | Все права защищены ;)
|
||
</footer>
|
||
|
||
<script type="module">
|
||
import { validationlog } from "./js/lines";
|
||
|
||
document.addEventListener('DOMContentLoaded', () => {
|
||
validationlog();
|
||
});
|
||
</script>
|
||
|
||
</body>
|
||
</html>
|