15 lines
466 B
HTML
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 %}
|