mirror of
https://github.com/kevinpapst/kimai2.git
synced 2024-12-22 12:18:29 +00:00
18 lines
556 B
Twig
18 lines
556 B
Twig
{% extends 'emails/layout.html.twig' %}
|
|
|
|
{% block title %}
|
|
{{ 'registration.title'|trans({'%username%': user.displayName}, 'email') }}
|
|
{% endblock %}
|
|
|
|
{% block body %}
|
|
<p>{{ 'registration.intro'|trans({'%email%': user.email}, 'email') }}<p>
|
|
|
|
<spacer size="16"></spacer>
|
|
|
|
<button class="large primary" href="{{ confirmationUrl }}">{{ 'registration.button'|trans({'%url%': confirmationUrl}, 'email') }}</button>
|
|
|
|
<spacer size="16"></spacer>
|
|
|
|
<p><small>{{ 'automated_email_dont_answer'|trans({}, 'email') }}</small></p>
|
|
{% endblock %}
|