15 lines
290 B
HTML
15 lines
290 B
HTML
|
{% extends 'global.html'%}
|
||
|
{% load static %}
|
||
|
|
||
|
# {% block title %}Voucher-Überprüfung{% endblock %}
|
||
|
|
||
|
{% block maincontent %}
|
||
|
|
||
|
<h2>Voucher-Überprüfung</h2>
|
||
|
<form method="post">
|
||
|
{% csrf_token %}
|
||
|
{{ form.as_p }}
|
||
|
<button type="submit">Login</button>
|
||
|
</form>
|
||
|
|
||
|
{% endblock maincontent %}
|