html: respect w3 validator complaints

This commit is contained in:
Johannes 2023-07-10 13:29:03 +02:00
parent c21f42975b
commit 809f86de67
3 changed files with 6 additions and 6 deletions

View file

@ -27,7 +27,7 @@
<label for="email">Email-Adresse</label> <label for="email">Email-Adresse</label>
<div class="form-text"> <div class="form-text">
{{if ne .Config.Tutor.MailSuffix ""}} {{if ne .Config.Tutor.MailSuffix ""}}
Du musst hier eine Email-Adresse angeben, die auf „{{.Config.Tutor.MailSuffix}}“ endet.<br /> Du musst hier eine Email-Adresse angeben, die auf „{{.Config.Tutor.MailSuffix}}“ endet.<br>
{{end}} {{end}}
Die Email-Adresse dient der Vermeidung von Spam und wird nicht veröffentlicht. Die Email-Adresse dient der Vermeidung von Spam und wird nicht veröffentlicht.
</div> </div>

View file

@ -6,8 +6,8 @@
<meta name="description" content="Eine Übersicht der Sprechstunden, die in den offenen Arbeitsräumen der Fachschaft Mathematik, TU Darmstadt, angeboten werden"> <meta name="description" content="Eine Übersicht der Sprechstunden, die in den offenen Arbeitsräumen der Fachschaft Mathematik, TU Darmstadt, angeboten werden">
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="/static/bootstrap/css/bootstrap.min.css" /> <link rel="stylesheet" href="/static/bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" href="/static/officeHours.css" /> <link rel="stylesheet" href="/static/officeHours.css">
<title>{{block "title" .}}Start{{end}} Sprechstunden</title> <title>{{block "title" .}}Start{{end}} Sprechstunden</title>
</head> </head>
@ -33,10 +33,10 @@
<footer class="container"> <footer class="container">
<div class="col-md-8 offset-md-2 bg-secondary bg-gradient my-3 p-3 rounded" style="--bs-bg-opacity: .3;"> <div class="col-md-8 offset-md-2 bg-secondary bg-gradient my-3 p-3 rounded" style="--bs-bg-opacity: .3;">
&COPY; <a class="text-body" href="https://mathebau.de/">Fachschaft Mathematik, TU Darmstadt</a> &COPY; <a class="text-body" href="https://mathebau.de/">Fachschaft Mathematik, TU Darmstadt</a>
<br /> <br>
<!-- NOTE: when updating this hard coded email adress, also update it in addMask.html --> <!-- NOTE: when updating this hard coded email adress, also update it in addMask.html -->
Technische Fragen an <a href="mailto:sprechstundentool@mathebau.de">sprechstundentool@mathebau.de</a> Technische Fragen an <a href="mailto:sprechstundentool@mathebau.de">sprechstundentool@mathebau.de</a>
<br /> <br>
Quellcode und Featurewünsche:&nbsp;<a href="https://gitea.mathebau.de/Fachschaft/sprechstunden-go">Gitea-Repository</a> Quellcode und Featurewünsche:&nbsp;<a href="https://gitea.mathebau.de/Fachschaft/sprechstunden-go">Gitea-Repository</a>
</div> </div>
</footer> </footer>

View file

@ -9,7 +9,7 @@
<form action="/confirmRequest"> <form action="/confirmRequest">
<div class="input-group"> <div class="input-group">
<div class="form-floating"> <div class="form-floating">
<input class="form-control required" type="text" name="code" id="code" required placeholder="Bestätigungscode" /> <input class="form-control required" type="text" name="code" id="code" required placeholder="Bestätigungscode">
<label for="code">Bestätigungscode</label> <label for="code">Bestätigungscode</label>
</div> </div>
<button class="btn btn-outline-primary" type="submit">Bestätigen</button> <button class="btn btn-outline-primary" type="submit">Bestätigen</button>