Weitere Reviewänderungen
This commit is contained in:
@@ -4,41 +4,29 @@ include_once 'php/controller/profile-controller.php';
|
||||
$user = $user ?? null;
|
||||
?>
|
||||
|
||||
<!--
|
||||
Content: Profil
|
||||
Inhalt: Das eigene Profil, wenn man angemeldet ist.
|
||||
Dort werden die aktuellen Profildaten angezeigt.
|
||||
-->
|
||||
|
||||
<main class="form-page">
|
||||
|
||||
<div class="form-container">
|
||||
|
||||
<h1>Mein Profil</h1>
|
||||
|
||||
<form>
|
||||
|
||||
<label class="input-label">Name</label>
|
||||
<input type="text"
|
||||
name="username"
|
||||
class="login-input"
|
||||
readonly
|
||||
value="<?php echo htmlspecialchars($user["username"] ?? ""); ?>">
|
||||
|
||||
<label class="input-label">Email-Adresse</label>
|
||||
<input type="email"
|
||||
name="email"
|
||||
class="login-input"
|
||||
readonly
|
||||
value="<?php echo htmlspecialchars($user["email"] ?? ""); ?>">
|
||||
|
||||
<label class="input-label">Passwort</label>
|
||||
<input type="password"
|
||||
name="password"
|
||||
class="login-input"
|
||||
readonly
|
||||
value="********">
|
||||
|
||||
</form>
|
||||
|
||||
<br>
|
||||
@@ -54,5 +42,4 @@ $user = $user ?? null;
|
||||
</a>
|
||||
|
||||
</div>
|
||||
|
||||
</main>
|
||||
Reference in New Issue
Block a user