initial login logic

This commit is contained in:
2026-01-19 20:12:50 -05:00
parent 523a4662b2
commit 96d252e47b
14 changed files with 537 additions and 0 deletions

11
templates/dashboard.html Normal file
View File

@@ -0,0 +1,11 @@
{% extends "base.html" %}
{% block title %}Dashboard - Kebuu{% endblock %}
{% block content %}
<div class="dashboard-container">
<h1>Welcome to your Dashboard</h1>
<p>Hello, {{ current_user.email }}!</p>
<p>You have successfully signed up and logged in.</p>
</div>
{% endblock %}