Refactor previous COOPGO Identity service - Initial commit

This commit is contained in:
2022-08-02 12:26:28 +02:00
commit 3e93e6593d
41 changed files with 9026 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
{{define "auth"}}
<html>
<head></head>
<body>
<h1>Login page</h1>
<p>{{.error}}</p>
<p>{{.realError}}</p>
<form method="post">
{{ .csrfField }}
Username : <input type="text" name="username" />
Password : <input type="text" name="password" />
<input type="submit" value="Submit">
</form>
</body>
</html>
{{end}}