]> git.immae.eu Git - github/wallabag/wallabag.git/blob - src/Wallabag/UserBundle/Resources/views/Resetting/reset_content.html.twig
manage assets through npm
[github/wallabag/wallabag.git] / src / Wallabag / UserBundle / Resources / views / Resetting / reset_content.html.twig
1 {% trans_default_domain 'FOSUserBundle' %}
2
3 {{ form_start(form, { 'action': path('fos_user_resetting_reset', {'token': token}), 'attr': { 'class': 'fos_user_resetting_reset' } }) }}
4 <div class="card-content">
5 <div class="row">
6 {{ form_widget(form) }}
7 </div>
8 <div class="card-action center">
9 <button class="btn waves-effect waves-light" type="submit" name="send">
10 {{ 'resetting.reset.submit'|trans }}
11 <i class="material-icons right">send</i>
12 </button>
13 </div>
14 </div>
15 </form>