2025-12-11 10:16:43 +05:30
|
|
|
{% extends "base.html" %}
|
|
|
|
|
{% block content %}
|
2026-01-10 01:04:21 +05:30
|
|
|
<h2>Register User</h2>
|
2025-12-11 10:16:43 +05:30
|
|
|
|
|
|
|
|
<div class="card p-4 shadow-sm">
|
|
|
|
|
<form method="POST">
|
2026-01-10 01:04:21 +05:30
|
|
|
<label>Name</label>
|
|
|
|
|
<input class="form-control mb-3" name="name" required>
|
2025-12-11 10:16:43 +05:30
|
|
|
|
2026-01-10 01:04:21 +05:30
|
|
|
<label>Email</label>
|
|
|
|
|
<input type="email" class="form-control mb-3" name="email" required>
|
2025-12-11 10:16:43 +05:30
|
|
|
|
2026-01-10 01:04:21 +05:30
|
|
|
<label>Password</label>
|
|
|
|
|
<input type="password" class="form-control mb-3" name="password" required>
|
2025-12-11 10:16:43 +05:30
|
|
|
|
|
|
|
|
<button class="btn btn-primary">Register</button>
|
|
|
|
|
</form>
|
|
|
|
|
</div>
|
|
|
|
|
{% endblock %}
|