mirror of
https://github.com/wallabag/wallabag.git
synced 2024-11-01 06:39:18 +00:00
33267f0736
Also remove some deprecation from Symfony. Use `LegacyEventDispatcherProxy` to handle Symfony 4 dispatch from FOSUser
15 lines
577 B
Twig
15 lines
577 B
Twig
{% trans_default_domain 'FOSUserBundle' %}
|
|
|
|
{{ form_start(form, {'action': path('fos_user_resetting_reset', {'token': token}), 'attr': {'class': 'fos_user_resetting_reset'}}) }}
|
|
<div class="card-content">
|
|
<div class="row">
|
|
{{ form_widget(form) }}
|
|
</div>
|
|
<div class="card-action center">
|
|
<button class="btn waves-effect waves-light" type="submit" name="send">
|
|
{{ 'resetting.reset.submit'|trans }}
|
|
<i class="material-icons right">send</i>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</form>
|