DasUnternehmen/templates/profile.html
2026-04-08 21:23:55 +02:00

15 lines
466 B
HTML

{% extends 'base.html' %}
{% block title %}Profil{% endblock %}
{% block content %}
<section class="card form-card">
<h1>Profil</h1>
<p><strong>Name:</strong> {{ user.name }}</p>
<p><strong>E-Mail:</strong> {{ user.email }}</p>
<form method="post">
<label>Neues Passwort</label>
<input type="password" name="password" required>
<button class="btn" type="submit">Passwort ändern</button>
</form>
</section>
{% endblock %}