mirror of
https://github.com/Project-Redacted/Highscores-Server.git
synced 2025-05-31 07:23:12 +00:00
Add templates and many other things
This commit is contained in:
parent
330201be3a
commit
62945c943d
414 changed files with 14758 additions and 4145 deletions
23
server/templates/auth.html
Normal file
23
server/templates/auth.html
Normal file
|
@ -0,0 +1,23 @@
|
|||
{% 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="" method="POST">
|
||||
<input type="text" name="username" placeholder="Username" required>
|
||||
<input type="email" name="email" placeholder="Email - Optional">
|
||||
<input type="password" name="password" placeholder="Password" required>
|
||||
<button type="submit" class="secondary">Register</button>
|
||||
</form>
|
||||
</div>
|
||||
{% endblock %}
|
Loading…
Add table
Add a link
Reference in a new issue