HTML-Validator-Anpassungen

This commit is contained in:
NOrtmann1
2026-04-22 18:32:48 +02:00
parent 0f3cd6a9cd
commit 77b61bf2f6
+6 -6
View File
@@ -22,31 +22,31 @@
<main>
<hr>
<div">
<div>
<div>
<div><h1>Benutzerdaten ändern</h1></div>
<div><a href="/users"><img src="../images/logo.png" width="120" height="72"></a></div>
</div>
<div>
<label for="Vorname"><h4>Vorname</h4></label>
<label id="Vorname"><h2>Vorname</h2></label>
<input type="text" name="Vorname" required="true" placeholder="Vorname" value="<?php //DB-Daten ?>">
</div>
</div>
<div>
<div>
<label for="Nachname"><h4>Nachname</h4></label>
<input type="text" name="Nachname" required="true" placeholder="Nachname"value="<?php //DB-Daten ?>">
<label id="Nachname"><h2>Nachname</h2></label>
<input type="text" name="Nachname" required="true" placeholder="Nachname" value="<?php //DB-Daten ?>">
</div>
</div>
<div>
<div>
<label for="Email"><h4>Email-Adresse</h4></label>
<label id="Email"><h2>Email-Adresse</h2></label>
<input type="email" name="Email" required="true" placeholder="mustermann@web.de" value="<?php //DB-Daten ?>">
</div>
</div>
<div>
<div>
<label for="Passwort"><h4>Passwort</h4></label>
<label id="Passwort"><h2>Passwort</h2></label>
<input type="password" name="Passwort" required="true" placeholder="Passwort">
</div>
</div>