101 lines
5.8 KiB
HTML
101 lines
5.8 KiB
HTML
<!DOCTYPE html>
|
||
<html lang="ru">
|
||
<head>
|
||
<meta charset="UTF-8" />
|
||
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0" />
|
||
<title>Новость</title>
|
||
<script type="module" src="/node_modules/bootstrap/dist/js/bootstrap.min.js"></script>
|
||
<link rel="stylesheet" href="/node_modules/bootstrap/dist/css/bootstrap.min.css" />
|
||
<link rel="stylesheet" href="/node_modules/bootstrap/dist/js/bootstrap.min.js" />
|
||
<link rel="stylesheet" href="/node_modules/bootstrap-icons/font/bootstrap-icons.min.css" />
|
||
<link rel="stylesheet" href="style.css" />
|
||
</head>
|
||
<body class="d-flex justify-content-center">
|
||
<div class="body d-flex rounded w-75 flex-column">
|
||
<header class="header d-flex rounded-top justify-content-between flex-column">
|
||
<div class="d-flex flex-row">
|
||
<img src="logo.png" alt="Логотип УлЧУ" class="logo d-block mx-5 my-5 w-25"/>
|
||
<label class="nameBuild d-flex align-self-center">Ульяновский Частный Университет</label>
|
||
</div>
|
||
<nav class="navBar navbar navbar-expand navbar-dark">
|
||
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav">
|
||
<span class="navbar-toggler-icon"></span>
|
||
</button>
|
||
<div class="navbar-collapse collapse justify-content-center" id="navbarNav">
|
||
<div class="navbar-nav">
|
||
<a class="nav-link" href="/info.html" target="_blank">
|
||
<i class="bi bi-info-circle"></i>
|
||
Об университете
|
||
</a>
|
||
<a class="nav-link" href="/Education.html" target="_blank">
|
||
<i class="bi bi-card-list"></i>
|
||
Образование
|
||
</a>
|
||
<a class="nav-link" href="/StudentLive.html" target="_blank">
|
||
<i class="bi bi-emoji-sunglasses-fill"></i>
|
||
Студенческая жизнь
|
||
</a>
|
||
<a class="nav-link" href="/Contacts.html" target="_blank">
|
||
<i class="bi bi-person-lines-fill"></i>
|
||
Контакты
|
||
</a>
|
||
<a class="nav-link active" href="/index.html">
|
||
<i class="bi bi-house-fill"></i>
|
||
Главная
|
||
</a>
|
||
</div>
|
||
</div>
|
||
</nav>
|
||
</header>
|
||
<news-form></news-form>
|
||
<template id="news-form-template">
|
||
<div class="row justify-content-center">
|
||
<form class="col needs-validation my-3">
|
||
<div class="m-3">
|
||
<label for="id" class="form-label">Номер</label>
|
||
<input type="text" class="form-control" id="id" readonly disabled />
|
||
</div>
|
||
<div class="m-3">
|
||
<label for="description" class="form-label">Описание</label>
|
||
<input type="text" class="form-control" id="description" required />
|
||
</div>
|
||
<div class="m-3">
|
||
<label for="bdate" class="form-label">Дата</label>
|
||
<input type="date" class="form-control" id="bdate" required />
|
||
</div>
|
||
<div class="m-3">
|
||
<label for="teg" class="form-label">Тег</label>
|
||
<select class="form-select" id="teg" required>
|
||
<option value="" selected>Выберите тег</option>
|
||
</select>
|
||
</div>
|
||
<div class="row row-cols-1 justify-content-center">
|
||
<div class="col col-md-6 col-lg-4 col-xl-3 m-lg-0 mb-2">
|
||
<button id="btn-save" type="submit" class="btn btn-primary d-block m-auto w-75">
|
||
Сохранить
|
||
</button>
|
||
</div>
|
||
<div class="col col-md-6 col-lg-4 col-xl-3 m-lg-0 mb-2">
|
||
<button id="btn-back" type="button" class="btn btn-primary d-block m-auto w-75">
|
||
Назад
|
||
</button>
|
||
</div>
|
||
</div>
|
||
</form>
|
||
</div>
|
||
</template>
|
||
<footer class="footer d-flex flex-row justify-content-around rounded-bottem">
|
||
<div class="d-flex align-items-center my-4 mx-0">
|
||
<p>Телефон: <strong class="numb">8-800-476-92-84</strong></p>
|
||
<p>E-mail: <strong>info@ulchu.ru</strong></p>
|
||
<P>Адрес: 432027, г. Ульяновск, ул. Северный Венец, д. 32</P>
|
||
<p>Официальный телеграмм канал: <strong>https://t.me/UlCHU</strong></p>
|
||
</div>
|
||
<div class="d-flex align-items-center my-4 mx-0">
|
||
<img src="qrtg.png" class="fimg"/>
|
||
</div>
|
||
</footer>
|
||
<script type="module" src="/components/news/form/controller.js"></script>
|
||
</div>
|
||
</body>
|
||
</html> |