63 lines
1.8 KiB
PHP
63 lines
1.8 KiB
PHP
<!--
|
|
Seite: Profil
|
|
Inhalt: Das eigene Profil, wenn man angemeldet ist. Dort hat man die Möglichkeit seine Angaben zu ändern.
|
|
-->
|
|
<!DOCTYPE html>
|
|
<html lang="de">
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="description" content="EduForge">
|
|
<meta name="author" content="Niklas Ortmann">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link rel="icon" type="image/x-icon" href="images/logos/logo_icon.ico">
|
|
<link rel="stylesheet" href="css/main.css">
|
|
<link rel="stylesheet" href="css/navbar.css">
|
|
<link rel="stylesheet" href="css/footer.css">
|
|
<title>EduForge</title>
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<?php
|
|
include_once 'includes/navbar.php';
|
|
?>
|
|
|
|
<main>
|
|
|
|
<hr>
|
|
<div>
|
|
<div>
|
|
<h1>Benutzerdaten ändern</h1>
|
|
</div>
|
|
<div>
|
|
<div>
|
|
<label id="Vorname">Vorname</label>
|
|
<input type="text" name="Vorname" required placeholder="Vorname" value="<?php //DB-Daten ?>">
|
|
</div>
|
|
<div>
|
|
<label id="Nachname">Nachname</label>
|
|
<input type="text" name="Nachname" required placeholder="Nachname" value="<?php //DB-Daten ?>">
|
|
</div>
|
|
<div>
|
|
<label id="Email">Email-Adresse</label>
|
|
<input type="email" name="Email" required placeholder="mustermann@web.de" value="<?php //DB-Daten ?>">
|
|
</div>
|
|
<div>
|
|
<label id="Passwort">Passwort</label>
|
|
<input type="password" name="Passwort" required placeholder="Passwort">
|
|
</div>
|
|
<div>
|
|
<br>
|
|
<button type="submit" name="submit"><i></i> Speichern</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</main>
|
|
|
|
<?php
|
|
include_once 'includes/footer.php';
|
|
?>
|
|
</body>
|
|
|
|
</html>
|