initial commit

This commit is contained in:
smig 2025-04-05 14:05:39 -04:00
parent 5c09c5a22f
commit e89fb616e7
14 changed files with 1977 additions and 0 deletions

View file

@ -0,0 +1,21 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<form action="/auth/login" method="post">
<label for="username">Username</label>
<input type="text" name="username">
<label for="password">Password</label>
<input type="password" name="password" id="password">
<button type="submit">Submit</button>
<a href="/auth/register">Click here to register</a>
</form>
</body>
</html>