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,36 @@
{% extends "base.html" %}
{% block inhalt %}
<form method="POST" action="qr.html">
<label>Bitte Koordinaten angeben<br />(Dezimale Gradangabe - Bsp. 51.2332)</label><br>
<input type="hidden" name="type" value="geo">
<label>
<input name="ns" type="radio" value="N" required>
</label>N
<label>
<input name="ns" type="radio" value="S" required>
</label>S
<label>
<input type="text" name="nsk" id="nsk" size="15" maxlength="20" inputmode="numeric" pattern="[0-9\.]+" required>
<br /><br />
</label>
<label>
<input name="we" type="radio" value="W" required>
</label>W
<label>
<input name="we" type="radio" value="E" required>
</label>E
<label>
<input type="text" name="wek" id="wek" size="15" maxlength="20" inputmode="numeric" pattern="[0-9\.]+" required>
<br /><br />
</label>
<label><i><u>optionale Angabe:</u></i></label><br />
<label>
Höhe (in m):
<input type="number" name="high" size="5" maxlength="10"><br />
</label>
<br />
<button type="reset">Eingaben zur&uuml;cksetzen</button>
<button type="submit">Eingaben absenden</button>
</form>
{% endblock %}