102 lines
4.3 KiB
HTML
102 lines
4.3 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="css/style.css">
|
||
</head>
|
||
<body>
|
||
<header>
|
||
<nav class="navbar navbar-expand-md navbar-dark">
|
||
<div class="container-fluid">
|
||
<a class="navbar-brand" href="/">
|
||
<img class="logo" src="./images/assets/Image1.png" alt="logo">
|
||
<a class="Name" href="./index.html">UlRent</a>
|
||
|
||
</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 pe-5">
|
||
<a class="nav-link" href="./index.html">Главная</a>
|
||
<a class="nav-link" href="./page-help.html">Помощь</a>
|
||
|
||
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</nav>
|
||
</header>
|
||
|
||
<main class="container-fluid wrapper">
|
||
<article>
|
||
|
||
<form id="items-form" class="needs-validation" novalidate>
|
||
<table class="w-100 mx-auto">
|
||
<thead>
|
||
<th scope="col">
|
||
<div class="col-md-4 mx-auto">
|
||
<img id="image-preview" src="images/assets/Image8.png" class="rounded rounded-circle"
|
||
alt="placeholder" accept="image/*" >
|
||
</div>
|
||
|
||
<div class="form-item pt-4">
|
||
<label class="form-label" for="image">Изображение</label>
|
||
<input id="image" type="file" name="image" class="form-control" accept="image/*">
|
||
</div>
|
||
<div class="form-item">
|
||
<label for="firstname"> Название объявления </label>
|
||
<input id="firstname" name="firstname" class="form-control" type="text" required="">
|
||
</div>
|
||
</th>
|
||
<th scope="col">
|
||
|
||
<div class="form-item">
|
||
<label for="aboutme"> Описание </label>
|
||
<div class="ms-3" style="margin-right: 30px;">
|
||
<textarea class="form-control" name="overview" type="text" id="overview" rows="3" style="width: 100%; height: 300px;"></textarea>
|
||
</div>
|
||
</div>
|
||
|
||
<div class="form-item">
|
||
<label class="form-label" for="price">Цена</label>
|
||
<input id="price" name="price" class="form-control" type="number" value="0.00" min="1000.00" step="0.50"
|
||
required>
|
||
</div>
|
||
|
||
<div class="p-4" style="margin-bottom: 50px;">
|
||
<button type="submit" class="btn btn-primary btnsend" style="margin-left: 40px;">Добавить объявление</button>
|
||
</div>
|
||
</th>
|
||
</thead>
|
||
<tbody></tbody>
|
||
</table>
|
||
|
||
|
||
</form>
|
||
|
||
</article>
|
||
</main>
|
||
|
||
|
||
<footer class="footer mx-auto">
|
||
© 2023 UlRent Белянин Никита ПИбд-21 | Все права защищены ;)
|
||
</footer>
|
||
|
||
<script type="module">
|
||
import validation from "./js/validation";
|
||
import { linesPageForm } from "./js/lines"
|
||
|
||
document.addEventListener('DOMContentLoaded', () => {
|
||
validation();
|
||
linesPageForm();
|
||
});
|
||
</script>
|
||
</body>
|
||
</html>
|