mirror of
https://github.com/tebarius/Docker-Flask-QR.git
synced 2025-12-20 22:23:30 +01:00
24 lines
462 B
HTML
24 lines
462 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block inhalt %}
|
|
<form action="qr.html">
|
|
<label>Gib bitte Details zum WIFI ein!</label><br />
|
|
<input type="hidden" name="type" value="wifi">
|
|
|
|
<label for="ssid">SSID:</label>
|
|
<input type="text" name="ssid" id="ssid" size="30" maxlength="60" required><br />
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<br />
|
|
<button type="reset">Eingaben zurücksetzen</button>
|
|
<button type="submit">Eingaben absenden</button>
|
|
</form>
|
|
|
|
{% endblock %}
|