mirror of
https://github.com/tebarius/Docker-Flask-QR.git
synced 2025-12-21 06:33:29 +01:00
16 lines
469 B
HTML
16 lines
469 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block inhalt %}
|
|
<form action="qr.html">
|
|
<label>Wie lautet die URL / Webadresse?<br>(inkl. http...)</label><br />
|
|
<input type="hidden" name="type" value="url">
|
|
|
|
<label for="url">URL:</label>
|
|
<input type="url" name="url" id="url" size="30" maxlength="120" required><br />
|
|
<br />
|
|
<button type="reset">Eingaben zurücksetzen</button>
|
|
<button type="submit">Eingaben absenden</button>
|
|
</form>
|
|
|
|
{% endblock %}
|