mirror of
https://github.com/tebarius/Docker-Flask-QR.git
synced 2025-12-20 22:23:30 +01:00
31 lines
1.2 KiB
HTML
31 lines
1.2 KiB
HTML
{% extends "base.html" %}
|
|
|
|
{% block inhalt %}
|
|
<form action="qr.html">
|
|
<label>Gib bitte Details für deinen Termin ein!</label><br />
|
|
<input type="hidden" name="type" value="cal">
|
|
|
|
<label for="title">Titel:</label>
|
|
<input type="text" name="title" id="title" size="30" maxlength="60" required><br />
|
|
<label for="sdate">Start-Datum</label>
|
|
<input type="date" name="sdate" id="sdate" required><br />
|
|
<br />
|
|
<label><i><u>optionale Angaben:</u></i></label><br />
|
|
<label for="stime">Start-Zeit</label>
|
|
<input type="time" name="stime" id="stime"><br />
|
|
<label for="edate">End-Datum</label>
|
|
<input type="date" name="edate" id="edate"><br />
|
|
<label for="etime">End-Zeit</label>
|
|
<input type="time" name="etime" id="etime"><br />
|
|
<label for="location">Ort:</label>
|
|
<input type="text" name="location" id="location" size="30" maxlength="120"><br />
|
|
<label for="description">weitere Notizen:</label>
|
|
<input type="text" name="description" id="description" size="30" maxlength="180"><br />
|
|
|
|
<br />
|
|
<button type="reset">Eingaben zurücksetzen</button>
|
|
<button type="submit">Eingaben absenden</button>
|
|
</form>
|
|
|
|
{% endblock %}
|