eh meh working prototype i guess

This commit is contained in:
2026-02-10 19:10:04 +01:00
parent c0480d7f4d
commit 19a6182267
8 changed files with 455 additions and 0 deletions

13
templates/register.html Normal file
View File

@@ -0,0 +1,13 @@
{% extends "layout.html" %}
{% block content %}
<div class="card" style="max-width: 400px; margin: auto;">
<h2>Register</h2>
<form method="POST">
<label>Username</label>
<input type="text" name="username" required>
<label>Password</label>
<input type="password" name="password" required>
<button type="submit" class="btn">Register</button>
</form>
</div>
{% endblock %}