templates/login/login.html.twig line 1

Open in your IDE?
  1. {% extends "login/loginBase.html.twig" %}
  2. {% block body %}
  3.     <div class="container-fluid login__background">
  4.         {# Login Box #}
  5.         {% include"login/_loginBox.html.twig" %}
  6.     </div>
  7.     </div>
  8.     {# Sections: #}
  9.     {#    {% include 'login/_bookingSection.html.twig'%}#}
  10.     {#    {% include 'login/_knowSection.html.twig'%}#}
  11.     {#    {% include 'login/_hotelPromoSection.html.twig'%}#}
  12.     {#    {% include 'login/_partnersSection.html.twig'%}#}
  13.     {#    {% include 'login/_poweredBySection.html.twig'%}#}
  14. {% endblock %}
  15. {% block javascripts %}
  16.     {{ parent() }}
  17.     {% include"login/_loginBoxJs.html.twig" %}
  18. {#    <script>#}
  19. {#        // Activate Carousel#}
  20. {#        $('.carousel').carousel();#}
  21. {#    </script>#}
  22.     <!-- Google reCaptcha -->
  23.     <script src="https://www.google.com/recaptcha/api.js?render={{ google_recaptcha_site_key }}&badge=bottomright"></script>
  24.     <script>let recaptcha_site_key = '{{ google_recaptcha_site_key }}';</script>
  25.     <script src="{{ asset('js/recaptcha.js') }}"></script>
  26.     <!-- end Google reCaptcha -->
  27. {% endblock %}