Files
mabac/abac/templates/login.html

13 lines
232 B
HTML
Raw Normal View History

2023-09-27 21:43:47 +02:00
{% 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 %}