Implemented simple authentication page

This commit is contained in:
Leonetienne
2022-04-08 20:46:36 +02:00
parent d6d5f85d1a
commit 82faaee4e6
4 changed files with 334 additions and 5 deletions

14
authenticate.html Normal file
View File

@@ -0,0 +1,14 @@
<html>
<head>
<title>Authentication required</title>
</head>
<body>
<h1>Authentication required</h1>
<form action="/api--authenticate" method="POST">
<label for="password">Password</label>
<input type="password" id="password" name="password"></input>
<input type="submit" value="Submit">
</form>
</body>
</html>