Copied structure and files from Roos

This commit is contained in:
2025-04-03 15:52:27 +02:00
parent c87ed9cbd6
commit 66d79eeb89
13 changed files with 183 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
{% extends 'base.html' %}
{% block title %}
Login
{% endblock %}
{% block content %}
{% if feedback %}
<p>{{feedback}}</p>
{% endif %}
<form method="POST">
{{ form.hidden_tag() }}
{{ form.username.label }} {{ form.username() }}<br>
{{ form.password.label }} {{ form.password() }}<br>
{{ form.submit() }}
</form>
{% endblock %}