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 action="qr.html">
<label for="tel">Bitte Telefonnummer eingeben:</label><br>
<input type="hidden" name="type" value="tel" required>
<input type="tel" name="tel" id="tel" size="30" maxlength="30">
<br><br>
<button type="reset">Eingaben zur&uuml;cksetzen</button>
<button type="submit">Eingaben absenden</button>
</form>
{% endblock %}