mirror of
https://github.com/Project-Redacted/Highscores-Server.git
synced 2025-05-28 14:03:13 +00:00
22 lines
No EOL
816 B
HTML
22 lines
No EOL
816 B
HTML
{% extends "base.html" %}
|
|
{% block content %}
|
|
<div class="auth">
|
|
<h2>Login</h2>
|
|
<form action="" method="POST">
|
|
<input type="text" name="username" placeholder="Username | Email" required>
|
|
<input type="password" name="password" placeholder="Password" required>
|
|
<button type="submit">Login</button>
|
|
</form>
|
|
</div>
|
|
|
|
<p style="text-align: center;">or</p>
|
|
|
|
<div class="auth">
|
|
<h2>Register</h2>
|
|
<form action="{{ url_for('auth.register') }}" method="POST">
|
|
<input type="text" name="username" placeholder="Username" required>
|
|
<input type="password" name="password" placeholder="Password" required>
|
|
<button type="submit" class="secondary">Register</button>
|
|
</form>
|
|
</div>
|
|
{% endblock %} |