{% extends 'emails/layout/base.html.twig' %} {% block body %}

{{ 'email.greeting'|trans }}{% if firstname %} {{ firstname }}{% endif %},

{% if company %} {{ 'email.password.introWithSender'|trans({'%sender%': company}) }} {% else %} {{ 'email.password.intro'|trans }} {% endif %}

{{ 'email.password.label'|trans }}

{{ password }}

{% if sendSms %}

{{ 'lang.smsAlsoSent'|trans }}

{% endif %} {% if valid_until %} {% include 'emails/components/_expiry.html.twig' with { expiresAt: valid_until, dateFormat: 'd.m.Y' } %} {% endif %}

{{ 'email.thankYou'|trans }}

{% include 'emails/components/_signature.html.twig' with { signature: signature|default(null) } %} {% include 'emails/components/_security.html.twig' with { text: 'email.password.security'|trans } %} {% endblock %}