Internet-programming_PIbd-2.../Library/adding-books.html
2023-11-07 12:47:47 +04:00

102 lines
4.4 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" class="h-100">
<head>
<meta charset="UTF-8">
<title>Добавление</title>
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<script defer src="./node_modules/bootstrap/dist/js/bootstrap.bundle.js"></script>
<link rel="stylesheet" href="./node_modules/bootstrap/dist/css/bootstrap.min.css">
<link rel="stylesheet" href="./css/style.css">
</head>
<body class="d-flex flex-column h-100">
<header>
<nav class="navbar navbar-expand-md navbar-light">
<div class="container-fluid">
<a href="./index.html" class="navbar-brand fs-4">
<img src="./img/logo.svg" alt="logo" width="50px">
Библиотека
</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse"
data-bs-target="#navbarSupportedContent"
aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse justify-content-end fs-4" id="navbarSupportedContent">
<ul class="navbar-nav ml-auto">
<li>
<a href="./index.html" class="nav-link">Главная</a>
</li>
<li class="nav-item">
<a href="./login-page.html" class="nav-link">Войти</a>
</li>
<li class="nav-item">
<a href="./user-page.html" class="nav-link">Личный кабинет</a>
</li>
<li class="nav-item">
<a href="./search.html" class="nav-link">Поиск</a>
</li>
</ul>
</div>
</div>
</nav>
</header>
<main class="flex-shrink-0">
<div class="p-4 mx-auto mt-5 mb-5 w-75">
<h1 class="text-md-start text-center">Добавление новой книги</h1>
<div class="d-grid col-md-8 fs-4">
<div>
<label for="titleField" class="col-form-label orange-text">Название:</label>
<input type="text" class="form-control border-secondary-subtle rounded-8" id="titleField">
</div>
<div>
<label for="authorField" class="col-form-label orange-text">Автор:</label>
<input type="text" class="form-control border-secondary-subtle rounded-8" id="authorField">
</div>
<div class="dropdown">
<label for="dropdownMenuButton" class="col-form-label orange-text">Категории:</label>
<button class="btn border-secondary-subtle orange-text text-start fs-4 dropdown-toggle container-fluid" type="button" id="dropdownMenuButton"
data-bs-toggle="dropdown" aria-expanded="false">
Выберете категорию
</button>
<ul class="dropdown-menu" aria-labelledby="dropdownMenuButton">
<li><div class="dropdown-item">
<div class="form-check">
<input class="form-check-input" type="radio" name="flexRadioDefault" id="flexRadio1">
<label class="form-check-label" for="flexRadio1">
Оды
</label>
</div>
</div></li>
<li><div class="dropdown-item">
<div class="form-check">
<input class="form-check-input" type="radio" name="flexRadioDefault" id="flexRadio2">
<label class="form-check-label" for="flexRadio2">
Послания
</label>
</div>
</div></li>
<li><div class="dropdown-item">
<div class="form-check">
<input class="form-check-input" type="radio" name="flexRadioDefault" id="flexRadio3">
<label class="form-check-label" for="flexRadio3">
Элегии
</label>
</div>
</div></li>
</ul>
</div>
<div>
<label for="addFile" class="col-form-label orange-text">Добавьте файл:</label>
<button class="btn border-secondary-subtle orange-text text-md-start fs-4 container-fluid" type="button" id="addFile">Добавить</button>
</div>
</div>
<div class="d-grid gap-2 mt-4 d-md-flex justify-content-md-start">
<a href="./search-results.html" class="library-button btn fs-4">Продолжить</a>
</div>
</div>
</main>
<footer class="footer mt-auto d-flex justify-content-center align-items-center white-text">
2023, Захаров Р.А.
</footer>
</body>
</html>