{% extends 'base.html' %} {% load i18n %} {% block title %}{% trans 'Add a new email address' %} - Libravatar{% endblock title %} {% block body-onload %}document.forms.addemail.email.focus(){% endblock body-onload %} {% block content %}

{% trans 'Add a new email address' %}

{% csrf_token %} {{ form.email.errors }}

{{ form.email.label_tag }}: {{ form.email }}

{% blocktrans with sender_email as sender_email %}Please check your email for a message from us. You may need to whitelist {{ sender_email }} or check the junk folder.{% endblocktrans %}

 {% trans 'Cancel' %}

{% endblock content %}