blob: db28632082080444b8dff9859fb6c0f77bc189cd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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 %}
|