1{% extends '@Installation/layout.twig' %}
2
3{% block content %}
4
5    <script type="text/javascript">
6        $(function () {
7            // client-side test for https to handle the case where the server is behind a reverse proxy
8            if (document.location.protocol === 'https:') {
9                $('p.next-step a').attr('href', $('p.next-step a').attr('href') + '&clientProtocol=https');
10            }
11        });
12    </script>
13
14    {% if not showNextStep %}
15        {% include "@Installation/_systemCheckLegend.twig" %}
16        <br style="clear:both;">
17    {% endif %}
18
19    <h2>{{ 'Installation_SystemCheck'|translate }}</h2>
20
21    {% include "@Installation/_systemCheckSection.twig" %}
22
23    {% if not showNextStep %}
24        <p>
25            <span class="icon-export"></span>
26            <a target="_blank" rel="noreferrer noopener" href="https://matomo.org/docs/requirements/">{{ 'Installation_Requirements'|translate }}</a>
27        </p>
28        {% include "@Installation/_systemCheckLegend.twig" %}
29    {% endif %}
30
31{% endblock %}
32