{% set _customer = customerService.getCustomerBySubDomain(app.request.getSchemeAndHttpHost()) %}
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>{% block title %} | {{ softwareName }}{% endblock %}</title>
{% block stylesheets %}
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
{{ encore_entry_link_tags('login') }}
{% if isIE() %}
{{ encore_entry_link_tags('ie') }}
{% endif %}
{% endblock %}
{% include 'parts/_favicon.html.twig' %}
</head>
<body class="vertical-center">
{% block body %}
<div class="login-box d-block mx-auto">
{% include 'parts/_switchLanguage.html.twig' with {containerClass: "text-right"} %}
<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>
{% block form %}
{% endblock %}
</div>
<div id="version" class="text-white">
{{ version }}
</div>
{% endblock %}
{% block javascripts %}
{{ encore_entry_script_tags('login') }}
{% if isIE() %}
{{ encore_entry_script_tags('ie') }}
{% endif %}
{% endblock %}
{% block specificScripts %}
{% endblock %}
</body>
</html>