{% extends 'security/email/base.html' %} {% from 'security/email/button.html' import mail_button %} {% block body %}
{{ _('Hello %(email)s!', email=user.email) }}
{{ _('Someone (you?) tried to register this email - which is already in our system.') }}
{% if user.username %}{{ _('This account also has the following username associated with it: %(username)s.', username=user.username) }}
{% endif %} {% if recovery_link %}{{ _('If you forgot your password you can reset it') }}
{{ mail_button( _('Here'), recovery_link ) }} |