Files
infrait/templates/admin_login.html

31 lines
1.3 KiB
HTML

<!doctype html>
<html lang="ru">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Вход в админку | InfraIT</title>
<link rel="icon" type="image/png" href="{{ url_for('favicon') }}">
<link rel="shortcut icon" href="{{ url_for('favicon') }}">
<link rel="apple-touch-icon" href="{{ url_for('favicon') }}">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Montserrat:wght@600;700;800&display=swap" rel="stylesheet">
<link rel="stylesheet" href="{{ url_for('static', filename='css/styles.css') }}">
</head>
<body>
<main class="section">
<div class="container" style="max-width:560px;">
<h1>Админка InfraIT</h1>
<p class="section-subtitle">Введите пароль администратора.</p>
<form method="post" class="lead-form">
{% if error %}
<p class="form-error">{{ error }}</p>
{% endif %}
<label>Пароль<input type="password" name="password" required></label>
<button type="submit" class="btn btn-primary">Войти</button>
</form>
</div>
</main>
</body>
</html>