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

View File

@@ -0,0 +1,20 @@
{% extends "base.html" %}
{% block content %}
<h2 class="mb-4">User Registration</h2>
<div class="card p-4 shadow-sm">
<form method="POST">
<label>Name:</label>
<input type="text" name="name" class="form-control mb-3" required>
<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-primary">Register</button>
</form>
</div>
{% endblock %}