HTML in Templates verbessert

This commit is contained in:
Gonne 2022-09-19 18:04:59 +02:00
parent 4f5dc053a0
commit e1c5ccab3a
12 changed files with 70 additions and 48 deletions

View file

@ -1,6 +1,8 @@
<html>
<!DOCTYPE html>
<html lang="de">
<head>
<title>Anfrage bestätigen fehlgeschlagen</title>
{{template "head.html" .}}
</head>
<body>
<p>
@ -8,7 +10,7 @@
Bitte gib deinen Bestätigungscode hier ein.
</p>
<form action="/confirmRequest">
<label for="code">Bestätigungscode</label>: <input type="text" name="code"/>
<label for="code">Bestätigungscode</label>: <input type="text" name="code" id="code"/>
<input type="submit" />
</form>
{{template "footer.html" .}}