InternetProgramming/adminchanel.html

85 lines
2.9 KiB
HTML
Raw Normal View History

2023-10-29 15:43:48 +04:00
<!DOCTYPE html>
<html lang="en">
<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="css/style.css">
</head>
<body>
<header>
<nav class="navbar navbar-expand-md navbar-dark">
<div class="container-fluid">
<a class="navbar-brand" href="/">
2023-11-13 10:52:27 +04:00
<i class="fa-solid fa-camera"></i>
2023-10-29 15:43:48 +04:00
Тарелька
</a>
<button class="navbar-toggler" 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 justify-content-end" id="navbarNav">
<div class="navbar-nav" >
<div class="row" style="flex-wrap: nowrap; margin: 5px 20px 5px 0px">
<input class="form-control me-1 nav-link" type="search" style="width: 90%" placeholder="Search" aria-label="Search">
2023-11-09 19:01:29 +04:00
<button class="back" type="submit" onclick="document.location='/search.html'">
2023-10-29 15:43:48 +04:00
<i class="fa-solid fa-search"> </i>
2023-11-09 19:01:29 +04:00
</button>
2023-10-29 15:43:48 +04:00
</div>
<div class="row" style="flex-wrap: nowrap; margin: 5px 20px 5px 0px">
2023-11-09 19:01:29 +04:00
<button class="login nav-link me-1" style="width: 90%" onclick="document.location='/login.html'">Войти/Зарегистрироватся</button>
<button class="user nav-link" type="submit" onclick="document.location='/chanel.html'">
2023-10-29 15:43:48 +04:00
<i class="fa-solid fa-user"> </i>
2023-11-09 19:01:29 +04:00
</button>
2023-10-29 15:43:48 +04:00
</div>
</div>
</div>
</div>
</nav>
</header>
<div style="width: 100%; height: 20%">
<img src="video/fon.jpg" style="width: 100%; height: 100%">
</div>
<div class="chanel rows" style="--bs-gutter-x: 0;">
<div class="chanel-user">
<i class="fa-solid fa-user" style="margin: 35% 0 0 35%"> </i>
</div>
<div class="chanel-text column">
<div>НАЗВАНИЕ КАНАЛА</div>
</div>
2023-11-13 10:52:27 +04:00
<button class="chanel-subscribe" onclick="document.location='videored.html'">
2023-10-29 15:43:48 +04:00
Редактировать
</button>
</div>
2023-11-13 10:52:27 +04:00
<div>
<table id="items-table" class="table table-striped">
<thead>
<th scope="col"></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>
2023-10-29 15:43:48 +04:00
</div>
2023-11-13 10:52:27 +04:00
<script type="module">
import validation from "./js/validation";
import { linesForm } from "./js/lines";
document.addEventListener('DOMContentLoaded', () => {
validation();
linesForm();
});
</script>
2023-10-29 15:43:48 +04:00
</body>
</html>