phase2: add modular apps, auth scaffolding, and base template routing
This commit is contained in:
14
templates/users/login.html
Normal file
14
templates/users/login.html
Normal file
@ -0,0 +1,14 @@
|
||||
{% extends 'base.html' %}
|
||||
|
||||
{% block title %}HoopScout | Login{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
<section class="panel narrow">
|
||||
<h1>Login</h1>
|
||||
<form method="post" class="stack">
|
||||
{% csrf_token %}
|
||||
{{ form.as_p }}
|
||||
<button type="submit" class="button">Sign in</button>
|
||||
</form>
|
||||
</section>
|
||||
{% endblock %}
|
||||
10
templates/users/profile.html
Normal file
10
templates/users/profile.html
Normal file
@ -0,0 +1,10 @@
|
||||
{% extends 'base.html' %}
|
||||
|
||||
{% block title %}HoopScout | Profile{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
<section class="panel">
|
||||
<h1>Profile</h1>
|
||||
<p>Profile management scaffolding for future phases.</p>
|
||||
</section>
|
||||
{% endblock %}
|
||||
14
templates/users/signup.html
Normal file
14
templates/users/signup.html
Normal 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 %}
|
||||
Reference in New Issue
Block a user