mirror of
https://github.com/Project-Redacted/Highscores-Server.git
synced 2025-06-29 04:16:17 +00:00
Add account page and login system
This commit is contained in:
parent
ebdef07840
commit
ffba2b3b7b
11 changed files with 154 additions and 63 deletions
10
server/templates/account.html
Normal file
10
server/templates/account.html
Normal file
|
@ -0,0 +1,10 @@
|
|||
{% 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 %}
|
Loading…
Add table
Add a link
Reference in a new issue