Create user , user login register routes and pages

This commit is contained in:
2026-01-10 01:04:21 +05:30
parent fe9b056128
commit 54f3d16b57
17 changed files with 322 additions and 387 deletions

View File

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