Files
vision/templates/me/password.html.twig
Xbird 9f22f5b1ee V-Beta-1.0.0
Vision is out of alpha !
2022-02-02 17:46:29 +01:00

16 lines
434 B
Twig

{% extends 'base.html.twig' %}
{% block title %}{% trans %}title_user_profile{% endtrans %}{% endblock %}
{% block subtitle %}{% if app.user.mainRank %}{{ app.user.mainRank.shortname }}. {% endif %}{{ app.user.fullName }}{% endblock %}
{% block body %}
<div class="row">
<div class="col-lg-6">
<h2>{% trans %}title_password{% endtrans %}</h2>
<hr>
{{ form(form) }}
</div>
</div>
{% endblock %}