12 lines
483 B
HTML
12 lines
483 B
HTML
{% extends 'base.html' %}
|
|
{% block content %}
|
|
<section class="auth-card">
|
|
<h1>{{ t('login.title') }}</h1>
|
|
<form method="post" action="/login">
|
|
<label>{{ t('login.username') }}<input name="username" autocomplete="username" required autofocus></label>
|
|
<label>{{ t('login.password') }}<input type="password" name="password" autocomplete="current-password" required></label>
|
|
<button type="submit">🔐 {{ t('login.submit') }}</button>
|
|
</form>
|
|
</section>
|
|
{% endblock %}
|