21 lines
687 B
HTML
21 lines
687 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Corona-Kontaktformular - Neu erstellen</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<h1>Corona-Kontaktformular</h1>
|
|
<form method="post">
|
|
<div class="form-group">
|
|
<label for="event">Veranstaltung:</label>
|
|
<input id="event" class="form-control" name="event" value="Kunstrasen">
|
|
</div>
|
|
<button type="submit" class="btn btn-success">Formular erstellen</button>
|
|
</form>
|
|
</div>
|
|
</body>
|
|
</html>
|