sprechstunden-go/templating/templates/requestNotFound.html

20 lines
634 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}}