sprechstunden-go/templates/requestNotFound.html

18 lines
493 B
HTML
Raw Normal View History

2022-09-19 16:04:59 +00:00
<!DOCTYPE html>
<html lang="de">
<head>
<title>Anfrage bestätigen fehlgeschlagen</title>
2022-09-19 16:04:59 +00:00
{{template "head.html" .}}
</head>
<body>
2022-09-05 18:10:35 +00:00
<p>
Dieser Bestätigungscode ist nicht verfügbar. <br />
Bitte gib deinen Bestätigungscode hier ein.
</p>
<form action="/confirmRequest">
2022-09-19 16:04:59 +00:00
<label for="code">Bestätigungscode</label>: <input type="text" name="code" id="code"/>
2022-09-05 18:10:35 +00:00
<input type="submit" />
</form>
{{template "footer.html" .}}
</body>
</html>