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.
This commit is contained in:
Johannes 2023-07-09 12:27:17 +02:00
parent 826f6597fd
commit 4d7d98feed
10 changed files with 73 additions and 52 deletions

View file

@ -1,12 +1,19 @@
{{define "title"}}Anfrage bestätigen fehlgeschlagen{{end}}
{{define "content"}}
<p>
Dieser Bestätigungscode ist nicht verfügbar. <br>
Bitte gib deinen Bestätigungscode hier ein.
</p>
<form action="/confirmRequest">
<label for="code">Bestätigungscode</label>: <input type="text" name="code" id="code">
<input type="submit">
<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}}