30 lines
992 B
HTML
30 lines
992 B
HTML
<!DOCTYPE html>
|
|
<html lang="ru">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<title>Вход</title>
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='styles.css') }}" />
|
|
</head>
|
|
<body>
|
|
<div class="page auth-page">
|
|
<h1>Вход в систему</h1>
|
|
{% if error_message %}
|
|
<div class="alert alert-error">{{ error_message }}</div>
|
|
{% endif %}
|
|
<form method="post" class="auth-form">
|
|
<label>
|
|
Логин
|
|
<input type="text" name="username" required />
|
|
</label>
|
|
<label>
|
|
Пароль
|
|
<input type="password" name="password" required />
|
|
</label>
|
|
<button type="submit">Войти</button>
|
|
</form>
|
|
<p>Нет аккаунта? <a href="{{ url_for('register') }}">Запросить доступ</a></p>
|
|
</div>
|
|
</body>
|
|
</html>
|