fixed some frontend and made some adjustments

This commit is contained in:
Yamozha
2021-02-19 15:23:19 +02:00
parent a62ccb389d
commit db511a8f7d
237 changed files with 31195 additions and 0 deletions

View File

@ -0,0 +1,18 @@
<!-- 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' %}" class="inverted">Log Out</a></p>
<p><a href="{% url 'password_reset' %}" class="inverted">Reset Password</a></p>
{% else %}
<p>You are not logged in</p>
<a href="{% url 'login' %}">Log In</a>
{% endif %}
{% endblock %}