Files
Online-library/html/lk.html

99 lines
5.0 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Личный кабинет</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="/css/style.css">
</head>
<body>
<header class="mb-4">
<h1 class="text-center display-4 fw-bold" style="color: var(--accent)">Добро пожаловать на BookHub</h1>
<h4 class="text-center mb-4">Самые скучные книги только у нас!</h4>
<nav class="navbar navbar-expand-lg navbar-custom p-3">
<div class="container-fluid">
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav mx-auto gap-3">
<li class="nav-item"><a href="/html/index.html" class="nav-link nav-link-custom">Главная страница</a></li>
<li class="nav-item"><a href="/html/search.html" class="nav-link nav-link-custom">Поиск</a></li>
<li class="nav-item dropdown">
<a class="nav-link nav-link-custom dropdown-toggle" href="/html/choice.html" role="button"
data-bs-toggle="dropdown">Что выбрать</a>
<ul class="dropdown-menu dropdown-menu-dark">
<li><a class="dropdown-item" href="/html/choice.html#военные">Военные книги</a></li>
<li><a class="dropdown-item" href="/html/choice.html#наука">Научная литература</a></li>
<li><a class="dropdown-item" href="/html/choice.html#дети">Детские книги</a></li>
<li><a class="dropdown-item" href="/html/choice.html#психология">Психология</a></li>
</ul>
</li>
<li class="nav-item"><a href="/html/lk.html" class="nav-link nav-link-custom">Личный кабинет</a></li>
</ul>
</div>
</div>
</nav>
</header>
<main class="container">
<h1 class="text-center mb-5" style="color: var(--accent)">Личный кабинет</h1>
<div class="row justify-content-center">
<div class="col-md-8 col-lg-6">
<form class="form-custom">
<div class="mb-4">
<label class="form-label">Имя</label>
<input type="text" class="form-control" value="Иван">
</div>
<div class="mb-4">
<label class="form-label">Фамилия</label>
<input type="text" class="form-control" value="Иванов">
</div>
<div class="mb-4">
<label class="form-label">Почта</label>
<input type="email" class="form-control" value="ivan@example.com">
</div>
<div class="mb-4">
<label class="form-label">Город</label>
<input type="text" class="form-control" value="Москва">
</div>
<div class="mb-4">
<label class="form-label">Телефон</label>
<input type="tel" class="form-control" value="+7 (999) 123-45-67">
</div>
<button class="btn btn-custom w-100 py-2">Сохранить изменения</button>
</form>
</div>
</div>
</main>
<footer class="mt-5 p-4" style="background-color: var(--bg-medium)">
<div class="container">
<div class="row text-center">
<div class="col-md-6 mb-4">
<h3>Контакты</h3>
<p>Москва, ул. Книжная, 12<br>Часы работы: 10:00 - 20:00</p>
</div>
<div class="col-md-6">
<h3>Соцсети</h3>
<div class="d-flex justify-content-center gap-3">
<a href="https://vk.ru"><img src="/res/vk.svg" alt="VK" style="width: 32px"></a>
<a href="https://lichess.org"><img src="/res/telegram.svg" alt="Telegram" style="width: 32px"></a>
</div>
</div>
</div>
</div>
</footer>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>