init commit

This commit is contained in:
2025-10-30 07:58:22 -05:00
commit 8405edd191
32 changed files with 1210 additions and 0 deletions

19
old_dashboard.html Normal file
View File

@@ -0,0 +1,19 @@
{% extends "base.html" %}
{% set header = "Dashboard" %}
{% block content %}
<article>
<hgroup>
<h2>Welcome, {{ (profile.name or profile.email) if profile else current_user.email }}</h2>
<p>Your Appwrite user ID: <code>{{ profile["$id"] }}</code></p>
</hgroup>
<details>
<summary>JWT info</summary>
<pre>{{ jwt_info | tojson(indent=2) }}</pre>
</details>
<form method="post" action="{{ url_for('auth.logout') }}">
<button type="submit" class="secondary">Sign out</button>
</form>
</article>
{% endblock %}