mirror of
https://github.com/Project-Redacted/Highscores-Server.git
synced 2025-06-21 00:30:36 +00:00
10 lines
No EOL
268 B
HTML
10 lines
No EOL
268 B
HTML
{% extends "base.html" %}
|
|
{% block content %}
|
|
<h2>Hello, {{ current_user.username }}!</h2>
|
|
<a href="{{ url_for('auth.logout') }}">Logout</a>
|
|
|
|
<h2>Tokens</h2>
|
|
{% for token in token_list %}
|
|
<p>{{ token.token }}</p>
|
|
{% endfor %}
|
|
{% endblock %} |