mirror of
https://github.com/wallabag/wallabag.git
synced 2024-11-01 14:49:15 +00:00
33267f0736
Also remove some deprecation from Symfony. Use `LegacyEventDispatcherProxy` to handle Symfony 4 dispatch from FOSUser
12 lines
409 B
Twig
12 lines
409 B
Twig
{% trans_default_domain 'FOSUserBundle' %}
|
|
|
|
{{ form_start(form, {'action': path('fos_user_change_password'), 'attr': {'class': 'fos_user_change_password'}}) }}
|
|
<div class="card-content">
|
|
<div class="row">
|
|
{{ form_widget(form) }}
|
|
<div>
|
|
<input type="submit" value="{{ 'change_password.submit'|trans }}" />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</form>
|