templates/front/customer/identification.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'|trans} %}
  4. {% endblock %}
  5. {% block javascripts %}
  6. <script>
  7. $.validate({
  8. modules: 'location, date',
  9. lang: '{{ app.request.locale | e('js') }}'
  10. });
  11. </script>
  12. {% endblock %}
  13. {% block content %}
  14. <div id="identification" class="ctn">
  15. {% include 'front/layout/messages.html.twig' %}
  16. <div class="forms cf">
  17. {% include 'front/customer/blocks/login.html.twig' %}
  18. {% include 'front/customer/blocks/quick-register.html.twig' %}
  19. </div>
  20. <div class="ctn mentions">
  21. <h2>{{ "login.description.text1" | trans }}</h2>
  22. <p>{{ "login.description.text2" | trans }}</p>
  23. <h2>{{ "login.description.text3" | trans }}</h2>
  24. <p>{{ "login.description.text4" | trans }}</p>
  25. <h2>{{ "login.description.text5" | trans }}</h2>
  26. <p>{{ "login.description.text6" | trans }}</p>
  27. <h2>{{ "login.description.text7" | trans }}</h2>
  28. <p>{{ "login.description.text8" | trans }}</p>
  29. </div>
  30. <div class="footer-spacer"></div>
  31. </div>
  32. {% endblock %}