feat: implement basic session authentication

This commit is contained in:
Jef Roosens 2025-01-11 21:37:37 +01:00
parent df741c931b
commit 902de85131
No known key found for this signature in database
GPG key ID: 21FD3D77D56BAF49
10 changed files with 204 additions and 97 deletions

View file

@ -0,0 +1,9 @@
<article>
<form hx-post="/login" hx-target="#content">
<label for="username">Username:</label>
<input type="text" id="username" name="username">
<label for="password">Password:</label>
<input type="password" id="password" name="password">
<input type="submit" value="Login">
</form>
</article>