54 lines
2.4 KiB
HTML
54 lines
2.4 KiB
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="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">
|
||
|
|
||
|
<div>
|
||
|
<table id="items-table" class="table table-striped bg-cyan">
|
||
|
<thead>
|
||
|
<th scope="col">№</th>
|
||
|
<th scope="col" class="w-25">Название</th>
|
||
|
<th scope="col" class="w-25">Язык</th>
|
||
|
<th scope="col" class="w-25">Год</th>
|
||
|
<th scope="col"></th>
|
||
|
<th scope="col"></th>
|
||
|
</thead>
|
||
|
<tbody></tbody>
|
||
|
</table>
|
||
|
</div>
|
||
|
<button id="items-add" class="btn bg-cyan"><a class="btn" href="/add.html" >Добавить фильм</a></button>
|
||
|
</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 type="module">
|
||
|
import validation from "./js/validation";
|
||
|
import {draw} from "./js/lines.js";
|
||
|
document.addEventListener('DOMContentLoaded', () => {
|
||
|
validation();
|
||
|
draw();
|
||
|
});
|
||
|
</script>
|
||
|
</body>
|
||
|
</html>
|