initial server version
This commit is contained in:
27
templates/admin_login.html
Normal file
27
templates/admin_login.html
Normal file
@@ -0,0 +1,27 @@
|
||||
<!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="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>
|
||||
Reference in New Issue
Block a user