Login and register page and some other stuff

This commit is contained in:
2021-09-06 01:31:11 +02:00
committed by Mikael Göransson
commit e91582831a
15 changed files with 771 additions and 0 deletions

11
src/views/index.html Normal file
View File

@@ -0,0 +1,11 @@
<h1>Login</h1>
<form method="post">
<label for="username">Username</label>
<input type="text" name="username" id="username" />
<label for="password">Password</label>
<input type="password" name="password" id="password" />
<button type="submit">Login</button>
</form>
<p><a href="/register">Register</a></p>