This commit is contained in:
2023-09-27 21:43:47 +02:00
parent c8dd8ef4fc
commit 175e13da4f
7 changed files with 106 additions and 2 deletions

12
abac/templates/login.html Normal file
View File

@@ -0,0 +1,12 @@
{% extends 'base.html' %}
{% block title %}Login{% endblock %}
{% block content %}
<h2>Login</h2>
<form method="post">
{% csrf_token %}
{{ form.as_p }}
<button type="submit">Login</button>
</form>
{% endblock %}