107 lines
4.5 KiB
HTML
107 lines
4.5 KiB
HTML
<!DOCTYPE html>
|
||
<html lang="ru">
|
||
|
||
<head>
|
||
<title>Манга</title>
|
||
<meta charset="UTF-8" />
|
||
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0" />
|
||
|
||
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.6/dist/css/bootstrap.min.css" rel="stylesheet"
|
||
integrity="sha384-4Q6Gf2aSP4eDXB8Miphtr37CMZZQ5oXLH2yaXMJ2w8e2ZtHTl7GptT4jmndRuHDT" crossorigin="anonymous">
|
||
<link href="https://cdn.jsdelivr.net/npm/bootstrap-icons/font/bootstrap-icons.css" rel="stylesheet">
|
||
<link href="css/style.css" rel="stylesheet" />
|
||
</head>
|
||
|
||
<body class="bg-dark text-light d-flex flex-column min-vh-100">
|
||
|
||
<!-- Навигация -->
|
||
<nav class="navbar navbar-expand-lg navbar-dark bg-custom-dark px-3">
|
||
<a class="navbar-brand" href="index.html">
|
||
<img src="img/manga.png" alt="ЛОГО" height="50">
|
||
</a>
|
||
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNavDropdown"
|
||
aria-controls="navbarNavDropdown" aria-expanded="false" aria-label="Переключить навигацию">
|
||
<span class="navbar-toggler-icon"></span>
|
||
</button>
|
||
|
||
<div class="collapse navbar-collapse ms-3" id="navbarNavDropdown">
|
||
<ul class="navbar-nav me-auto">
|
||
</ul>
|
||
<a href="account.html" class="btn btn-outline-warning">Вход</a>
|
||
</div>
|
||
</nav>
|
||
|
||
<!-- Контент -->
|
||
<main class="container my-5 flex-grow-1">
|
||
<div class="row justify-content-center">
|
||
<div class="col-md-8 text-center">
|
||
<figure class="figure">
|
||
<img src="img/заглушка.jpg" class="figure-img img-fluid rounded" alt="Заглушка">
|
||
<figcaption class="figure-caption text-light">Заглушка</figcaption>
|
||
</figure>
|
||
|
||
<p class="mt-4">Здесь будет сама инфа о манге</p>
|
||
|
||
<div class="d-flex justify-content-center gap-3 mt-3">
|
||
<a href="author.html" class="btn btn-primary"><i class="bi bi-person-lines-fill me-2"></i>Про автора</a>
|
||
<a href="reading.html" class="btn btn-success"><i class="bi bi-book me-2"></i>Читать</a>
|
||
<button class="btn btn-warning" data-bs-toggle="modal" data-bs-target="#addReaderModal">
|
||
<i class="bi bi-person-plus me-2"></i>Добавить читателя
|
||
</button>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</main>
|
||
|
||
<div class="modal fade" id="addReaderModal" tabindex="-1" aria-labelledby="addReaderModalLabel" aria-hidden="true">
|
||
<div class="modal-dialog modal-dialog-centered">
|
||
<div class="modal-content bg-dark text-light">
|
||
<div class="modal-header">
|
||
<h5 class="modal-title" id="addReaderModalLabel">Добавить читателя</h5>
|
||
<button type="button" class="btn-close btn-close-white" data-bs-dismiss="modal" aria-label="Закрыть"></button>
|
||
</div>
|
||
<div class="modal-body">
|
||
<form id="addReaderForm">
|
||
<div class="mb-3">
|
||
<label for="userSelect" class="form-label">Выберите пользователя</label>
|
||
<select class="form-select" id="userSelect" required>
|
||
<option value="">Выберите...</option>
|
||
<!-- Пользователи будут подставлены через JS -->
|
||
</select>
|
||
</div>
|
||
<div class="d-grid">
|
||
<button type="submit" class="btn btn-success">
|
||
<i class="bi bi-check2-circle me-2"></i>Добавить
|
||
</button>
|
||
</div>
|
||
</form>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<footer class="bg-custom-dark text-light text-center py-4">
|
||
<div class="container">
|
||
<p>Спасибо, что посетили наш сайт, если возникли вопросы, обращайтесь к нам на почту
|
||
<a href="mailto:manga@manga.scom" class="text-warning">manga@manga.scom</a>
|
||
</p>
|
||
<p>Если вас интересуют наши соц.сети, то вот они:</p>
|
||
<div class="d-flex justify-content-center">
|
||
<a href="https://vk.com/ded_moroz1509" class="me-3">
|
||
<img src="img/VK0.png" alt="VK" height="30">
|
||
</a>
|
||
</div>
|
||
</div>
|
||
</footer>
|
||
|
||
<!-- JS Bootstrap -->
|
||
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js" crossorigin="anonymous"></script>
|
||
|
||
|
||
<!-- Твой модуль JS -->
|
||
<script type="modal" src="/html/src/main.js"></script>
|
||
|
||
</body>
|
||
|
||
</html>
|