firrst commit

This commit is contained in:
2025-01-04 19:57:22 +08:00
parent 638bd6536e
commit 71b54bae94
10 changed files with 343 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
{% extends 'base.html' %}
{% block title %}Login{% endblock %}
{% block content %}
<div class="row justify-content-center">
<div class="col-md-6">
<h1 class="text-center">Login</h1>
<form method="POST">
<div class="mb-3">
<label for="email" class="form-label">Email</label>
<input type="email" class="form-control" id="email" name="email" required>
</div>
<div class="mb-3">
<label for="password" class="form-label">Password</label>
<input type="password" class="form-control" id="password" name="password" required>
</div>
<button type="submit" class="btn btn-primary w-100">Login</button>
</form>
</div>
</div>
{% endblock %}