mirror of
https://github.com/tebarius/Docker-Flask-QR.git
synced 2025-12-21 06:33:29 +01:00
37 lines
1.2 KiB
HTML
37 lines
1.2 KiB
HTML
{% 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ücksetzen</button>
|
|
<button type="submit">Eingaben absenden</button>
|
|
</form>
|
|
{% endblock %}
|