Variante mit POST-REQUESTS ergänzt und Dockerfiles auf POST umgestellt

This commit is contained in:
2023-11-13 17:58:42 +01:00
parent 4107a930b6
commit 419833a9c4
28 changed files with 639 additions and 30 deletions

View File

@@ -0,0 +1,12 @@
{% extends "base.html" %}
{% block inhalt %}
<form method="POST" action="qr.html">
<label for="text">Was soll im QR-Code stehen?</label><br>
<input type="hidden" name="type" value="text">
<input type="text" name="text" id="text" size="30" maxlength="120" required>
<br><br>
<button type="reset">Eingaben zur&uuml;cksetzen</button>
<button type="submit">Eingaben absenden</button>
</form>
{% endblock %}