inital commit

This commit is contained in:
2026-05-17 18:29:30 -05:00
parent b827236fe2
commit 7c1e18bd59
4683 changed files with 159402 additions and 1 deletions

View File

@@ -0,0 +1,12 @@
{% extends "base.html" %}
{% block title %}Login{% endblock %}
{% block content %}
<section class="card form-card">
<h1>Login</h1>
<form method="post">
{% csrf_token %}
{{ form.as_p }}
<button class="button" type="submit">Login</button>
</form>
</section>
{% endblock %}