Files
webprogrammierung/content/profile.php
T
niklas.ortmann e4b03fff7a profile-site + first article
Profilseite mit Inhalt

Artikel "Pythagoras" mit Inhalt
2026-04-20 22:19:26 +02:00

85 lines
2.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">
<link rel="stylesheet" href="css/main.css" />
<title>EduForge</title>
</head>
<body>
<?php
include_once 'includes/navbar.php';
?>
<main>
<hr>
<div">
<div>
<div><h1>Benutzerdaten ändern</h1></div>
<div><a href="/users"><img src="../images/logo.png" width="120" height="72"></a></div>
</div>
<div>
<label for="Vorname"><h4>Vorname</h4></label>
<input type="text" name="Vorname" required="true" placeholder="Vorname" value="<?php //DB-Daten ?>">
</div>
</div>
<div>
<div>
<label for="Nachname"><h4>Nachname</h4></label>
<input type="text" name="Nachname" required="true" placeholder="Nachname"value="<?php //DB-Daten ?>">
</div>
</div>
<div>
<div>
<label for="Handy"><h4>Handy</h4></label>
<input type="text" name="Handy" id="Handy" placeholder="Handynummer" value="<?php //DB-Daten ?>">
</div>
</div>
<div>
<div>
<label for="Email"><h4>Email-Adresse</h4></label>
<input type="email" name="Email" required="true" placeholder="mustermann@web.de" value="<?php //DB-Daten ?>">
</div>
</div>
<div>
<div>
<label for="email"><h4>Wohnort</h4></label>
</div>
</div>
<div>
<div>
<label for="Passwort"><h4>Passwort</h4></label>
<input type="password" name="Passwort" required="true" placeholder="Passwort">
</div>
</div>
<div>
<div>
<br>
<button type="submit" name="submit"><i></i> Speichern</button>
</div>
</div>
</div>
</div>
</div>
</main>
<footer>
<a href="impressum.php">Impressum</a>
<a href="datenschutz.php">Datenschutz</a>
<a href="nutzungsbedingungen.html">Nutzungsbedingungen</a>
</footer>
</body>
</html>