73 lines
1.9 KiB
PHP
73 lines
1.9 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 class="form-page">
|
|
|
|
<div class="form-container">
|
|
<form>
|
|
|
|
<label class="input-label">Vorname</label>
|
|
|
|
<input type="text" name="Vorname" class="login-input" required
|
|
placeholder="Vorname"
|
|
value="<?php //DB-Daten ?>">
|
|
|
|
<label class="input-label">Nachname</label>
|
|
<input type="text" name="Nachname" class="login-input" required
|
|
placeholder="Nachname"
|
|
value="<?php //DB-Daten ?>">
|
|
|
|
<label class="input-label">Email-Adresse</label>
|
|
<input type="email" name="Email" class="login-input" required
|
|
placeholder="mustermann@web.de"
|
|
value="<?php //DB-Daten ?>">
|
|
|
|
<label class="input-label">Passwort</label>
|
|
<input type="password" name="Passwort" class="login-input"
|
|
required placeholder="Passwort">
|
|
|
|
<br>
|
|
|
|
<button type="submit" class="login-button">
|
|
Speichern
|
|
</button>
|
|
|
|
<br><br>
|
|
|
|
<button type="button" class="login-button">
|
|
Account löschen
|
|
</button>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
</main>
|
|
|
|
<?php
|
|
include_once 'includes/footer.php';
|
|
?>
|
|
</body>
|
|
|
|
</html>
|