Added navbar, login, signup, and forgot password
This commit is contained in:
16
website/templates/home.html
Normal file
16
website/templates/home.html
Normal file
@ -0,0 +1,16 @@
|
||||
<!-- templates/home.html -->
|
||||
{% extends 'base.html' %}
|
||||
|
||||
{% block title %}Home{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
{% if user.is_authenticated %}
|
||||
Hi {{ user.username }}!
|
||||
{{ currencyTotal }}
|
||||
<p><a href="{% url 'logout' %}">Log Out</a></p>
|
||||
<p><a href="{% url 'password_reset' %}">Reset Password</a></p>
|
||||
{% else %}
|
||||
<p>You are not logged in</p>
|
||||
<a href="{% url 'login' %}">Log In</a>
|
||||
{% endif %}
|
||||
{% endblock %}
|
Reference in New Issue
Block a user