Files
kimai2/templates/wizard/done.html.twig
2026-06-05 19:05:10 +02:00

15 lines
644 B
Twig

{% extends 'wizard/layout.html.twig' %}
{% from '@Tabler/components/button.html.twig' import button %}
{% block wizard_content %}
<div class="card-body text-center py-4 p-sm-7">
<img src="{{ asset('touch-icon-512x512.png') }}" style="height: 200px" alt="Kimai Logo">
<h1 class="mt-5">{{ 'wizard.done.title'|trans({}, 'wizard') }}</h1>
<p class="text-body-secondary">{{ 'wizard.done.description'|trans({}, 'wizard') }}</p>
</div>
{% endblock %}
{% block wizard_next_button %}
{{ button(false, { title : 'Next'|trans({}, 'TablerBundle'), combined: true, url: path('homepage') }, 'primary') }}
{% endblock %}