templates/front/checkout/identification.html.twig line 1

Open in your IDE?
  1. {% extends 'front/front.html.twig' %}
  2. {% block header %}
  3. {% include 'front/checkout/header.html.twig' %}
  4. {% include 'front/checkout/steps.html.twig' with {step:1} %}
  5. {% endblock %}
  6. {% block breadcrumbs %}{% endblock %}
  7. {% block javascripts %}
  8. <script src="{{ asset('js/checkout.js') }}"></script>
  9. <script>
  10. $.validate({
  11. modules: 'location, date, security',
  12. lang: 'fr'
  13. });
  14. $(document).ready(function(){
  15. checkout.init();
  16. })
  17. </script>
  18. {% endblock %}
  19. {% block content %}
  20. <div id="identification" class="ctn">
  21. <h1>{% trans %}Identification{% endtrans %}</h1>
  22. {% include 'front/layout/messages.html.twig' %}
  23. <div class="forms cf">
  24. {% include 'front/customer/blocks/login.html.twig' %}
  25. {% include 'front/customer/blocks/quick-register.html.twig' %}
  26. </div>
  27. <div class="footer-spacer"></div>
  28. </div>
  29. {% endblock %}