add basic login handling

This commit is contained in:
2022-05-29 19:47:13 -04:00
parent 9ed8108ed7
commit 5ae38a9fb4
3 changed files with 108 additions and 14 deletions

View File

@@ -0,0 +1,13 @@
package admintemplates
var LoginPage string = `
<html>
<body>
<form action="/login" method="post">
<input name="username"/>
<input type="password" name="password"/>
<input type="submit"/>
</form>
</body>
<html>
`