12 lines
414 B
HTML
Raw Normal View History

2022-08-13 23:36:10 +02:00
{% extends 'base.html' %}
{% block content %}
<h2>{% block title %}{{ _("Log in") }}{% endblock %}</h2>
2023-06-24 15:37:43 +02:00
2022-08-13 23:36:10 +02:00
<form method="post">
<input type="text" name="username" id="username" placeholder="{{ _('Username') }}" required><br/>
<input type="password" name="password" id="password" placeholder="{{ _('Password') }}" required><br/>
<input type="submit" value="{{ _('Log in') }}">
2022-08-13 23:36:10 +02:00
</form>
{% endblock %}