frontend: remove the nodejs stuff, I don't think I need it for such a simple project

This commit is contained in:
Lennart
2024-11-03 13:32:57 +01:00
parent bb0b055e50
commit 957a5d5f48
11 changed files with 4 additions and 889 deletions

View File

@@ -0,0 +1,12 @@
{% extends "layouts/default.html" %}
{% block content %}
<h1>Login</h1>
<form action="login" method="post">
<label for="username">Username</label>
<input type="text" name="username" placeholder="username">
<label for="password">Password</label>
<input type="password" name="password" placeholder="password">
<button type="submit">Login</button>
</form>
{% endblock %}