Weitere Reviewänderungen
This commit is contained in:
+6
-18
@@ -7,8 +7,7 @@ $user = $user ?? null;
|
||||
<!--
|
||||
Content: Profil
|
||||
Inhalt: Das eigene Profil, wenn man angemeldet ist.
|
||||
Dort hat man die Möglichkeit seine Angaben zu sehen
|
||||
und später zu bearbeiten.
|
||||
Dort werden die aktuellen Profildaten angezeigt.
|
||||
-->
|
||||
|
||||
<main class="form-page">
|
||||
@@ -17,36 +16,25 @@ $user = $user ?? null;
|
||||
|
||||
<h1>Mein Profil</h1>
|
||||
|
||||
<form method="post" action="index.php?pfad=profile">
|
||||
<form>
|
||||
|
||||
<label class="input-label">Name</label>
|
||||
<input type="text"
|
||||
name="username"
|
||||
class="login-input"
|
||||
required
|
||||
placeholder="Name"
|
||||
readonly
|
||||
value="<?php echo htmlspecialchars($user["username"] ?? ""); ?>">
|
||||
|
||||
<label class="input-label">Email-Adresse</label>
|
||||
<input type="email"
|
||||
name="email"
|
||||
class="login-input"
|
||||
required
|
||||
placeholder="mustermann@web.de"
|
||||
readonly
|
||||
value="<?php echo htmlspecialchars($user["email"] ?? ""); ?>">
|
||||
|
||||
<label class="input-label">Passwort</label>
|
||||
<input type="password"
|
||||
name="password"
|
||||
class="login-input"
|
||||
value="12345678"
|
||||
readonly>
|
||||
|
||||
<br>
|
||||
|
||||
<button type="submit" class="login-button">
|
||||
Speichern
|
||||
</button>
|
||||
readonly
|
||||
value="********">
|
||||
|
||||
</form>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user