Files
claims-system/templates/registration/login.html
2025-11-08 16:54:46 +01:00

14 lines
305 B
HTML

{% extends "claims/base.html" %}
{% block title %}Logga in{% endblock %}
{% block content %}
<h1>Logga in</h1>
<form method="post">
{% csrf_token %}
{{ form.as_p }}
<button type="submit">Logga in</button>
<input type="hidden" name="next" value="{{ next }}">
</form>
{% endblock %}