templates/security/baseAuthentication.html.twig line 1

Open in your IDE?
  1. {% set _customer = customerService.getCustomerBySubDomain(app.request.getSchemeAndHttpHost()) %}
  2. <!DOCTYPE html>
  3. <html>
  4. <head>
  5.     <meta charset="UTF-8">
  6.     <title>{% block title %} | {{ softwareName }}{% endblock %}</title>
  7.     {% block stylesheets %}
  8.         <link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
  9.         {{ encore_entry_link_tags('login') }}
  10.         {% if isIE() %}
  11.             {{ encore_entry_link_tags('ie') }}
  12.         {% endif %}
  13.     {% endblock %}
  14.     {% include 'parts/_favicon.html.twig' %}
  15. </head>
  16. <body class="vertical-center">
  17.     {% block body %}
  18.         <div class="login-box  d-block mx-auto">
  19.             {% include 'parts/_switchLanguage.html.twig' with {containerClass: "text-right"} %}
  20.             <div id="logo" class="d-block mx-auto mt-5 mb-3" style="background-image: url({{ _customer.customizations.images.authenticateLogo|default(image('logo.png')) }});"></div>
  21.             {% block form %}
  22.             {% endblock %}
  23.         </div>
  24.         <div id="version" class="text-white">
  25.             {{ version }}
  26.         </div>
  27.     {% endblock %}
  28. {% block javascripts %}
  29.     {{ encore_entry_script_tags('login') }}
  30.     {% if isIE() %}
  31.         {{ encore_entry_script_tags('ie') }}
  32.     {% endif %}
  33. {% endblock %}
  34. {% block specificScripts %}
  35. {% endblock %}
  36. </body>
  37. </html>