22 lines
607 B
HTML
22 lines
607 B
HTML
{% extends "base.html" %}
|
|
{% block content %}
|
|
<section class="card login-card">
|
|
<h1>Вход оператора</h1>
|
|
<p class="muted">Авторизация для веб-панели заявок.</p>
|
|
{% if error %}
|
|
<div class="error">{{ error }}</div>
|
|
{% endif %}
|
|
<form action="/login" method="post" class="form">
|
|
<label>
|
|
Логин
|
|
<input type="text" name="username" required />
|
|
</label>
|
|
<label>
|
|
Пароль
|
|
<input type="password" name="password" required />
|
|
</label>
|
|
<button type="submit">Войти</button>
|
|
</form>
|
|
</section>
|
|
{% endblock %}
|
|
|