Fix Log In button

This commit is contained in:
Lucas Schumacher 2024-05-25 22:21:17 -04:00
parent 81599a9bde
commit 474b551e13

View File

@ -83,7 +83,7 @@
{% if user.is_authenticated %} {% if user.is_authenticated %}
<a href="/logout"><button class="btn btn-outline-success">Log out</button></a> <a href="/logout"><button class="btn btn-outline-success">Log out</button></a>
{% else %} {% else %}
<button class="btn btn-primary">Log In</button> <a href="/login"><button class="btn btn-primary">Log In</button></a>
{% endif %} {% endif %}
</div> </div>
</div> </div>