mirror of
https://github.com/Fluffy-Bean/GameExpo23.git
synced 2025-05-21 10:34:52 +00:00
15 lines
622 B
HTML
15 lines
622 B
HTML
<nav>
|
|
<a href="{{ url_for('views.index') }}" class="button">Scores</a>
|
|
<a href="{{ url_for('views.about') }}" class="button">About</a>
|
|
|
|
<span class="spacer"></span>
|
|
|
|
{% if current_user.is_authenticated %}
|
|
<a href="{{ url_for('account.get_settings') }}" class="button primary">
|
|
{{ current_user.username }}
|
|
{% if not current_user.email %}<i class="ph ph-warning" style="margin-left: 0.2rem !important;"></i>{% endif %}
|
|
</a>
|
|
{% else %}
|
|
<a href="{{ url_for('auth.auth') }}" class="button primary"><i class="ph ph-user-circle"></i></a>
|
|
{% endif %}
|
|
</nav>
|