phase2: add modular apps, auth scaffolding, and base template routing

This commit is contained in:
Alfredo Di Stasio
2026-03-10 10:27:40 +01:00
parent 35686bdb66
commit f47ffe6c15
63 changed files with 594 additions and 24 deletions

View File

@ -0,0 +1,14 @@
{% extends 'base.html' %}
{% block title %}HoopScout | Signup{% endblock %}
{% block content %}
<section class="panel narrow">
<h1>Create account</h1>
<form method="post" class="stack">
{% csrf_token %}
{{ form.as_p }}
<button type="submit" class="button">Create account</button>
</form>
</section>
{% endblock %}