You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
488 B

{% extends 'base.html.twig' %}
{% block title %}
Upravit profil
{% endblock %}
{% block body %}
{{ parent() }}
<main>
<div class="loginDiv">
<h1>Uživatel: <strong>{{ app.user.email }}</strong></h1>
{{ form_start(form) }}
{{ form_row(form.password) }}
<button type="submit">Změnit heslo</button>
{{ form_end(form, {'render_rest': false}) }}
<a id="logoutBtn" href="{{ path('users_logout') }}">Odhlásit se</a>
</div>
</main>
{% endblock %}

Powered by TurnKey Linux.