mirror of
https://github.com/kevinpapst/kimai2.git
synced 2025-01-25 17:38:31 +00:00
f2fb338539
* fix year in dashboard * make batch actions accessible via javascript * bump packages * remove BOM from CSV * rebuild assets * fix duplicated automated-email warning
13 lines
441 B
Twig
13 lines
441 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>
|
|
{% endblock %}
|