14 lines
345 B
HTML
14 lines
345 B
HTML
|
|
{% extends "repapp/base.html" %}
|
||
|
|
{% load crispy_forms_tags %}
|
||
|
|
{% block title %}
|
||
|
|
- Gast Login
|
||
|
|
{% endblock title %}
|
||
|
|
{% block content %}
|
||
|
|
<h2>Gast Login</h2>
|
||
|
|
<form method="post">
|
||
|
|
{% csrf_token %}
|
||
|
|
{{ form|crispy }}
|
||
|
|
<button type="submit" class="btn btn-primary">Anmelden</button>
|
||
|
|
</form>
|
||
|
|
{% endblock content %}
|