31 lines
1.4 KiB
HTML
31 lines
1.4 KiB
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="/static/style.css" />
|
|
<link rel="icon" type="image/png" href="/static/favicon.png" />
|
|
</head>
|
|
<body>
|
|
<div class="login-corner-brand">МОНТ - инфрастуктурный полигон</div>
|
|
<main class="center-box login-page">
|
|
<section class="login-shell">
|
|
<img src="/static/logo.png" alt="MONT" class="brand-logo brand-logo-fullscreen" />
|
|
<div style="height:3.5rem"></div>
|
|
{% if session_notice %}<div class="session-notice">{{ session_notice }}</div>{% endif %}
|
|
{% if login_error %}<div class="auth-error">{{ login_error }}</div>{% endif %}
|
|
<form method="post" action="/login" class="panel login-panel">
|
|
<input type="hidden" name="csrf_token" value="{{ csrf_token }}" />
|
|
<label>Логин</label>
|
|
<input type="text" name="username" placeholder="Введите логин" required />
|
|
<label>Пароль</label>
|
|
<input type="password" name="password" placeholder="Введите пароль" required />
|
|
<button type="submit">Войти</button>
|
|
</form>
|
|
</section>
|
|
</main>
|
|
<footer class="login-made-by-wrap"><a class="made-by login-made-by" href="mailto:rgalyaviev@mont.com">Made by Galyaviev</a></footer>
|
|
</body>
|
|
</html>
|