Guest User

Untitled

a guest
Jan 24th, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. {# ... #}
  2.  
  3. {% block body %}
  4. {{ form_start(form, {'method': 'post', 'action': path('fos_user_registration_register'), 'attr': {'class': 'fos_user_registration_register'}}) }}
  5. {{ form_row(form.email, {
  6. attr: { class: 'some-custom-class'}
  7. }) }}
  8. {{ form_row(form.username) }}
  9. {{ form_row(form.plainPassword) }}
  10. <div>
  11. <input type="submit" value="{{ 'registration.submit'|trans }}" />
  12. </div>
  13. {{ form_end(form) }}
  14. {% endblock %}
Add Comment
Please, Sign In to add comment