blob: 4811061e4a1725caa88d5abe50d3319ac1b9b0fa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<!DOCTYPE html>
<html>
<body>
<h2>Termin Finden</h2>
<form action="/view_meeting">
<label for="a">Zeige Umfrage mit ID:</label><br>
<input type="text" id="umfrage id" name="meeting_id" value=""><br>
<!--<label for="b">Datum:</label><br>-->
<!--<input type="date" id="date" name="date" value=""><br><br>-->
<input type="submit" value="Submit">
</form>
<p>If you click the "Submit" button, the form-data will be sent to a page called "/view_meeting".</p>
</body>
</html>
|