sprechstunden-go/templating/templates/requestNotFound.html
Johannes 4d7d98feed ui: style remaining pages
Mostly, this reduces to displaying the short content inside a more narrow block, fitting into the horizontal header and footer limits.
2023-07-09 12:27:17 +02:00

20 lines
636 B
HTML

{{define "title"}}Anfrage bestätigen fehlgeschlagen{{end}}
{{define "content"}}
<div class="col-md-8 offset-md-2">
<p>
Dieser Bestätigungscode ist nicht verfügbar. <br>
Bitte gib deinen Bestätigungscode hier ein.
</p>
<form action="/confirmRequest">
<div class="input-group">
<div class="form-floating">
<input class="form-control required" type="text" name="code" id="code" required placeholder="Bestätigungscode" />
<label for="code">Bestätigungscode</label>
</div>
<button class="btn btn-outline-primary" type="submit">Bestätigen</button>
</div>
</div>
</form>
{{end}}