summaryrefslogtreecommitdiffstats
path: root/patchwork/templates/patchwork/user-link-confirm.html
diff options
context:
space:
mode:
Diffstat (limited to 'patchwork/templates/patchwork/user-link-confirm.html')
-rw-r--r--patchwork/templates/patchwork/user-link-confirm.html19
1 files changed, 19 insertions, 0 deletions
diff --git a/patchwork/templates/patchwork/user-link-confirm.html b/patchwork/templates/patchwork/user-link-confirm.html
new file mode 100644
index 0000000..449bfeb
--- /dev/null
+++ b/patchwork/templates/patchwork/user-link-confirm.html
@@ -0,0 +1,19 @@
+{% extends "base.html" %}
+
+{% block title %}{{ user.username }}{% endblock %}
+{% block heading %}link accounts for {{ user.username }}{% endblock %}
+
+
+{% block body %}
+
+{% if errors %}
+<p>{{ errors }}</p>
+{% else %}
+ <p>You have sucessfully linked the email address {{ person.email }} to
+ your patchwork account</p>
+
+{% endif %}
+<p>Back to <a href="{% url 'patchwork.views.user.profile' %}">your
+ profile</a>.</p>
+
+{% endblock %}