2023-11-13 19:15:21 +04:00
|
|
|
|
<!DOCTYPE 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="preconnect" href="https://fonts.googleapis.com">
|
|
|
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
|
|
|
<link href="https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,800;0,900;1,700&display=swap" rel="stylesheet">
|
2023-12-08 22:40:11 +04:00
|
|
|
|
<link rel="stylesheet" href="css/style.css">
|
2023-11-13 19:15:21 +04:00
|
|
|
|
</head>
|
|
|
|
|
|
|
|
|
|
<body class="d-flex flex-column min-vh-100 bg-white">
|
|
|
|
|
<header class="w-100 position-sticky top-0">
|
|
|
|
|
<nav class="navbar navbar-expand-lg navbar-light">
|
|
|
|
|
<div class="container-md">
|
|
|
|
|
<a class="navbar-brand me-lg-5 d-flex align-items-center" href="/" id="logo">
|
|
|
|
|
<img src="icons/logo.png" alt="logo" class="me-2">
|
|
|
|
|
Читай-комната
|
|
|
|
|
</a>
|
|
|
|
|
<button class="navbar-toggler ms-auto" 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" id="navbarNav">
|
|
|
|
|
<ul class="navbar-nav align-items-lg-center justify-content-lg-start w-100">
|
|
|
|
|
<li class="header-link nav-item ms-lg-2 me-lg-3">
|
|
|
|
|
<a class="nav-link" href="./index.html">Главная</a>
|
|
|
|
|
</li>
|
|
|
|
|
<li class="header-link nav-item me-lg-3">
|
|
|
|
|
<a class="nav-link" href="./catalog.html">Каталог</a>
|
|
|
|
|
</li>
|
|
|
|
|
<li class="header-link nav-item me-lg-5" id="header-contacts">
|
|
|
|
|
<a class="nav-link" href="./contacts.html">Контакты</a>
|
|
|
|
|
</li>
|
|
|
|
|
<div class="flex-grow-1 me-lg-4" id="header-search">
|
|
|
|
|
<input class="form-control h-25" type="search" placeholder="Я ищу..." aria-label="Search" id="search-bar">
|
|
|
|
|
</div>
|
|
|
|
|
<li class="nav-item">
|
|
|
|
|
<a class="nav-link" aria-current="page" href="./login.html">
|
|
|
|
|
Вход
|
|
|
|
|
</a>
|
|
|
|
|
</li>
|
|
|
|
|
<p class="d-none d-lg-block">
|
|
|
|
|
/
|
|
|
|
|
</p>
|
|
|
|
|
<li class="nav-item me-lg-3">
|
|
|
|
|
<a class="nav-link" href="./registration.html">
|
|
|
|
|
Регистрация
|
|
|
|
|
</a>
|
|
|
|
|
</li>
|
|
|
|
|
<li class="nav-item">
|
|
|
|
|
<a class="nav-link pe-lg-0" href="./cart.html">
|
|
|
|
|
<img src="icons/card.png" alt="card" width="30" height="35" id="cart-icon">
|
|
|
|
|
</a>
|
|
|
|
|
</li>
|
|
|
|
|
</ul>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</nav>
|
|
|
|
|
</header>
|
|
|
|
|
|
|
|
|
|
<main class="container-md d-flex flex-column flex-grow-1 my-0">
|
|
|
|
|
<div class="row gy-3">
|
|
|
|
|
<div class="col-12 mt-4 px-0">
|
|
|
|
|
<div class="block d-flex justify-content-center fs-2 fw-bold mb-3 mb-sm-4" id="admin-title">
|
|
|
|
|
Панель администратора
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="col-12 px-0">
|
|
|
|
|
<div class="block table-responsive">
|
2023-12-08 22:40:11 +04:00
|
|
|
|
<table id="items-table" class="table table-hover table-bordered align-middle">
|
2023-11-13 19:15:21 +04:00
|
|
|
|
<thead>
|
|
|
|
|
<tr>
|
|
|
|
|
<th scope="col">#</th>
|
|
|
|
|
<th scope="col">Название книги</th>
|
|
|
|
|
<th scope="col">Автор</th>
|
|
|
|
|
<th scope="col">Цена</th>
|
2023-12-08 22:40:11 +04:00
|
|
|
|
<th scope="col">Количество</th>
|
|
|
|
|
<th scope="col">Сумма</th>
|
|
|
|
|
<th scope="col">Категория каталога</th>
|
2023-11-13 19:15:21 +04:00
|
|
|
|
<th scope="col"></th>
|
|
|
|
|
<th scope="col"></th>
|
|
|
|
|
</tr>
|
|
|
|
|
</thead>
|
2023-12-08 22:40:11 +04:00
|
|
|
|
<tbody class="table-group-divider"></tbody>
|
2023-11-13 19:15:21 +04:00
|
|
|
|
</table>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="col-12 px-0">
|
|
|
|
|
<div class="block mb-4">
|
|
|
|
|
<a class="btn btn-primary" href="add-item.html">Добавить товар</a>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</main>
|
|
|
|
|
|
|
|
|
|
<footer class="footer flex-shrink-0">
|
|
|
|
|
<div class="container-md" id="footer-container">
|
|
|
|
|
<div class="row d-flex align-items-center gy-3 gy-lg-0 gx-0" id="footer-row">
|
|
|
|
|
<div class="col-md-6 col-lg-4">
|
|
|
|
|
<div class="block d-flex justify-content-center justify-content-md-start" id="footer-copyright">
|
|
|
|
|
© И. А. Родионов, 2023.
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="col-md-6 col-lg-3">
|
|
|
|
|
<div class="block d-flex align-items-center justify-content-center justify-content-md-end">
|
|
|
|
|
<img src="icons/telephone-call.png" class="me-2" alt="telephone-call" width="32" height="32">
|
|
|
|
|
<p id="footer-phone-number-text">
|
|
|
|
|
+7 927 818-61-60
|
|
|
|
|
</p>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="col-md-12 col-lg-5 mb-3 mb-lg-0">
|
|
|
|
|
<div class="block d-flex align-items-center justify-content-center justify-content-lg-end">
|
|
|
|
|
<p class="me-3" id="footer-social-media-text">
|
|
|
|
|
Мы в соцсетях:
|
|
|
|
|
</p>
|
|
|
|
|
<a class="me-3" href="/">
|
|
|
|
|
<img src="icons/vk.png" alt="vk" width="32" height="32">
|
|
|
|
|
</a>
|
|
|
|
|
<a class="me-3" href="/">
|
|
|
|
|
<img src="icons/youtube.png" alt="youtube" width="32" height="32">
|
|
|
|
|
</a>
|
|
|
|
|
<a class="me-3" href="/">
|
|
|
|
|
<img src="icons/telegram.png" alt="telegram" width="32" height="32">
|
|
|
|
|
</a>
|
|
|
|
|
<a href="/">
|
|
|
|
|
<img src="icons/odnoklassniki.png" alt="odnoklassniki" width="32" height="32">
|
|
|
|
|
</a>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</footer>
|
2023-12-08 22:40:11 +04:00
|
|
|
|
<script type="module">
|
|
|
|
|
import validation from "./js/validation";
|
|
|
|
|
import { linesPageForm } from "./js/lines";
|
|
|
|
|
|
|
|
|
|
document.addEventListener('DOMContentLoaded', () => {
|
|
|
|
|
validation();
|
|
|
|
|
linesPageForm();
|
|
|
|
|
});
|
|
|
|
|
</script>
|
2023-11-13 19:15:21 +04:00
|
|
|
|
</body>
|
|
|
|
|
</html>
|