mirror of
https://github.com/Project-Redacted/Highscores-Server.git
synced 2025-05-31 07:23:12 +00:00
Add functionality to tokens
Style more elements
This commit is contained in:
parent
ffba2b3b7b
commit
10456f60a0
16 changed files with 380 additions and 42 deletions
|
@ -1,7 +1,8 @@
|
|||
{% extends "base.html" %}
|
||||
{% block content %}
|
||||
<div class="auth">
|
||||
<div class="block">
|
||||
<h2>Login</h2>
|
||||
<p>Welcome back!</p>
|
||||
<form action="{{ url_for('auth.login') }}" method="POST">
|
||||
<input type="text" name="username" placeholder="Username" required>
|
||||
<input type="password" name="password" placeholder="Password" required>
|
||||
|
@ -9,8 +10,9 @@
|
|||
</form>
|
||||
</div>
|
||||
|
||||
<div class="auth">
|
||||
<div class="block">
|
||||
<h2>Register</h2>
|
||||
<p>Don't have an account? Register here!</p>
|
||||
<form action="{{ url_for('auth.register') }}" method="POST">
|
||||
<input type="text" name="username" placeholder="Username" required>
|
||||
<input type="password" name="password" placeholder="Password" required>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue