css,mail,tel,url,calendar fertig

This commit is contained in:
2023-11-05 22:28:37 +01:00
parent 216266191c
commit 8fd88f1805
16 changed files with 350 additions and 81 deletions

12
app/templates/tel.html Normal file
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 %}