Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
unhackableandy committed Oct 19, 2023
1 parent d326f59 commit af2ad43
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion templates/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<div class="container mt-5">
<nav class="mb-4">
<a href="{{ url_for('home') }}">Home</a> |
{% if current_user.is_authenticated %}
{% if 'logged_in' in session and session['logged_in'] %}
<a href="{{ url_for('logout') }}">Logout</a>
{% else %}
<a href="{{ url_for('login') }}">Login</a>
Expand Down

0 comments on commit af2ad43

Please sign in to comment.