aboutsummaryrefslogtreecommitdiff
path: root/templates/pages/account.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/pages/account.html')
-rw-r--r--templates/pages/account.html16
1 files changed, 16 insertions, 0 deletions
diff --git a/templates/pages/account.html b/templates/pages/account.html
new file mode 100644
index 0000000..db28632
--- /dev/null
+++ b/templates/pages/account.html
@@ -0,0 +1,16 @@
+{% extends "base.html" %} {% block title %} account {% endblock %} {% block
+heading %}
+<h1>Hey {{ session.username }} 👋</h1>
+{% endblock %} {% block content %}
+<p>
+ Remember that index.cooking does not store any personal information such as
+ email addresses, so you are responsible for keeping access to your account at
+ all times, be sure to keep your username and password safe!
+</p>
+<p>
+ If you have lost account access and you need the URLs of all the recipes you
+ previously addedd, then contact me
+ <a href="mailto:hello@somwthing.com">here.</a>
+</p>
+<button hx-post="/logout">Logout</button>
+{% endblock %}