Weitere Reviewänderungen

This commit is contained in:
2026-05-31 22:38:29 +02:00
parent 55e9fa6a20
commit 02551049e0
2 changed files with 2 additions and 57 deletions
-13
View File
@@ -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>