aboutsummaryrefslogtreecommitdiff
path: root/templates/accounts/profile.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/accounts/profile.html')
-rw-r--r--templates/accounts/profile.html9
1 files changed, 9 insertions, 0 deletions
diff --git a/templates/accounts/profile.html b/templates/accounts/profile.html
new file mode 100644
index 0000000..aa6f3ad
--- /dev/null
+++ b/templates/accounts/profile.html
@@ -0,0 +1,9 @@
1{% extends "base.html" %}
2
3{% block content %}
4<h1>Your Account</h1>
5<p>Hello <b>{{ user.email }}</b></p>
6<ul>
7 <li><a href="{% url 'auth:logout' %}">Logout</a></li>
8</ul>
9{% endblock %}