2023-11-10 09:43:38 +04:00

67 lines
4.1 KiB
HTML

<html lang="ru">
<head>
<meta charset="utf-8">
<title>Онлайн-кинотеатр</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<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="style.css">
</head>
<body class ="d-flex flex-column h-100">
<header id="header" class="header row w-100 m-0 mb-3">
<div class="p-0">
<div class="d-flex pt-lg-3 px-lg-5 p-0 justify-content-center row w-100 m-0">
<div class = "d-flex col p-1 pe-0 fs-2 bg-cyan mw-100 mh-100 text-break flex-grow-1 justify-content-center">
<a class ="text-decoration-none text-center text-black fs-2 fw-normal font-family-Average Sans py-2" href="index.html">Онлайн-кинотеатр</a>
</div>
</div>
</div>
</header>
<main class="container-fluid flex-shrink-0">
<section class="d-flex align-items-center justify-content-center">
<div class="container">
<div class="justify-content-center pt-2">
<p class="text-center text-white fs-2 fw-normal font-family-Average Sans">Добавить фильм</p>
</div>
</div>
</section>
<form class="d-flex align-items-center justify-content-center">
<div class="container">
<div class="row justify-content-center mt-5 col">
<div class="flex-column d-flex col p-2 align-items-start form-group">
<input type="text" class="form-control p-2 m-2" placeholder="Название">
<input type="text" class="form-control p-2 m-2" placeholder="Дата выхода">
<input type="text" class="form-control p-2 m-2" placeholder="Режиссер">
<input type="text" class="form-control p-2 m-2" placeholder="Язык">
<label for="descriptionTextarea"><span class="text-white m-2">Описание</span></label>
<textarea class="form-control w-100 m-2" id="descriptionTextarea" rows="3"></textarea>
<label for="actorsTextarea"><span class="text-white m-2">Актеры</span></label>
<textarea class="form-control w-100 m-2" id="actorsTextarea" rows="3"></textarea>
<label for="genresTextarea"><span class="text-white m-2">Жанры</span></label>
<textarea class="form-control w-100 m-2" id="genresTextarea" rows="2"></textarea>
<div class="form-row w-100">
<div class="form-group col-6">
<label for="movieFile"><span class="text-white m-2">Файл фильма</span></label>
<input type="file" class="form-control-file m-2" id="movieFile">
</div>
<label for="movieImg"><span class="text-white m-2">Обложка фильма</span></label>
<div class="form-group col-6">
<img src="images/noimage.png" class="m-2">
<input type="file" class="form-control-file m-2" id="movieImg">
</div>
</div>
<button type="submit" class="btn btn-primary mt-5 text-break px-5 py-1 fs-2">Добавить</button>
</div>
</div>
</div>
</form>
</main>
<footer class="footer mt-auto fixed bottom-0">
<div class= "bg-dark-blue d-flex text-center justify-content-center">
<p class="text-black fs-5 fw-normal font-family-Average Sans">Фильмы нам не пренадлежат</p>
</div>
</footer>
<script src="./node_modules/bootstrap/dist/js/bootstrap.min.js"></script>
</body>
</html>