Building a voucher-verify form.

This commit is contained in:
2020-08-01 19:00:11 +02:00
parent ea9b46961b
commit 9bd85aba7a
4 changed files with 34 additions and 3 deletions

View File

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