Initial claims system setup

This commit is contained in:
Victor Andersson
2025-11-08 16:54:46 +01:00
commit 9619dbedcb
31 changed files with 1440 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
{% 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 %}