templates/front/customer/password.html.twig line 1

Open in your IDE?
  1. {% extends 'front/front.html.twig' %}
  2. {% block breadcrumbs %}
  3. {% include 'front/layout/breadcrumbs.html.twig' with {'page':'Identification'} %}
  4. {% endblock %}
  5. {% block javascripts %}
  6. <script>
  7. $.validate({
  8. modules: 'location, date',
  9. lang:'fr'
  10. });
  11. </script>
  12. {% endblock %}
  13. {% block content %}
  14. <div id="identification" class="ctn">
  15. <h1>{% trans %}Identification{% endtrans %}</h1>
  16. {% include 'front/layout/messages.html.twig' %}
  17. <div class="forms cf">
  18. {% include 'front/customer/blocks/password.html.twig' %}
  19. </div>
  20. <div class="footer-spacer"></div>
  21. </div>
  22. {% endblock %}