www/signup.html
2025-07-05 05:36:09 +03:00

93 lines
3 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Регистрация | КОМП</title>
<link rel="stylesheet" href="/style/main.css">
</head>
<body>
<header>
<div class="heigher">
<div class="left">
<a href="/" class="logo">
КОМП
</a>
<nav>
<a href="/" class="button">Стихи</a>
<a href="/news" class="button">Новости</a>
<a href="/people" class="button">Участники</a>
<a href="/about" class="button">О нас</a>
</nav>
</div>
<div class="right">
<nav class="non-logged" style="display: none">
<a href="/signup" class="button active">Регистрация</a>
<a href="/login" class="button">Вход</a>
</nav>
<nav class="logged" style="display: none">
<a href="/add" class="button">Добавить</a>
<a href="/my" class="button">Профиль</a>
</nav>
<button>
<svg width="25" height="25">
<rect width="25" height="3" y="4"></rect>
<rect width="25" height="3" y="11"></rect>
<rect width="25" height="3" y="18"></rect>
</svg>
</button>
</div>
</div>
<nav id="menu">
<a href="/" class="button">Стихи</a>
<a href="/news" class="button">Новости</a>
<a href="/people" class="button">Участники</a>
<a href="/about" class="button">О нас</a>
<div class="non-logged" style="display: none">
<a href="/signup" class="button active">Регистрация</a>
<a href="/login" class="button">Вход</a>
</div>
<div class="logged" style="display: none">
<a href="/add" class="button">Добавить</a>
<a href="/my" class="button">Профиль</a>
</div>
</nav>
</header>
<main>
<div id="form">
<div id="label" class="active">Регистрация</div>
<form method="post" action="api/signup">
<label>
<p>Имя</p>
<input type="text" class="input" name="name" placeholder="Александр" required>
</label>
<label>
<p>Фамилия</p>
<input type="text" class="input" name="subname" placeholder="Пушкин" required>
</label>
<label>
<p>Логин</p>
<input type="text" class="input" name="login" placeholder="pushkin1799" required>
</label>
<label>
<p>Пароль</p>
<input type="password" name="password" class="input" required>
</label>
<label>
<p>Повторите пароль</p>
<input type="password" name="password2" class="input" required>
</label>
<input type="submit" value="Зарегистрироваться">
</form>
</div>
</main>
<footer>
<div>Казанское объединение молодых поэтов</div>
<div>
<a href="https://t.me/komppoet">Telegram</a><a href="https://git.debu.su/komp">Исходный код</a>
</div>
</footer>
<script src="/js/main.js"></script>
<script src="/js/signup.js"></script>
</body>
</html>