14 lines
305 B
HTML
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 %}
|