create project and create model and dashboard

This commit is contained in:
2025-12-11 10:16:43 +05:30
parent 2371202ac3
commit 2e62320167
55 changed files with 1072 additions and 0 deletions

17
app/templates/login.html Normal file
View File

@@ -0,0 +1,17 @@
{% extends "base.html" %}
{% block content %}
<h2 class="mb-4">Login</h2>
<div class="card p-4 shadow-sm">
<form method="POST">
<label>Email:</label>
<input type="email" name="email" class="form-control mb-3" required>
<label>Password:</label>
<input type="password" name="password" class="form-control mb-3" required>
<button class="btn btn-success">Login</button>
</form>
</div>
{% endblock %}