DEV aus der Abgabe 1 #4

Merged
niklas.ortmann merged 55 commits from dev into main 2026-05-13 13:00:21 +02:00
Showing only changes of commit 77b61bf2f6 - Show all commits
+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>