diff --git a/ivatar/ivataraccount/templates/add_email.html b/ivatar/ivataraccount/templates/add_email.html new file mode 100644 index 0000000..6e91d1c --- /dev/null +++ b/ivatar/ivataraccount/templates/add_email.html @@ -0,0 +1,22 @@ +{% extends 'base.html' %} +{% load i18n %} + +{% block title %}{% trans 'Add a new email address' %} - ivatar{% endblock title %} + +{% block content %} + +

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

+ +

{% blocktrans %}Otherwise, type your email address in the box below and we will send you an email with a link to click on in order to verify that you own that email address.{% endblocktrans %}

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

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

+ +

+  {% trans 'Cancel' %}

+ +
+ +{% endblock content %}