Loothandler

This commit is contained in:
Joren Schipman
2024-05-04 01:30:04 +02:00
parent 04db12a77f
commit 6d8d316bb1
6 changed files with 156 additions and 2 deletions

20
login.html Normal file
View File

@@ -0,0 +1,20 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Login</title>
</head>
<body>
<h2>Login</h2>
<form action="/" method="post">
<label for="password">Password:</label><br>
<input type="password" id="password" name="password"><br>
<input type="submit" value="Submit">
</form>
{{if .}}
<p style="color: red;">{{.}}</p>
{{end}}
</body>
</html>