working on user login

Signed-off-by: Stephan Richter <s.richter@srsoftware.de>
This commit is contained in:
2024-07-17 00:18:14 +02:00
parent 5627db16b5
commit add4209a1f
22 changed files with 173 additions and 401 deletions

View File

@@ -0,0 +1,24 @@
<html>
<head>
<title>Light OIDC</title>
<script src="config.js"></script>
<script src="lightoidc.js"></script>
</head>
<body>
<h1>Login</h1>
<form id="form">
<fieldset>
<legend>User credentials</legend>
<label>
Username
<input type="text" name="user" />
</label>
<label>
Password
<input type="password" name="pass" />
</label>
<button type="button" onClick="submitForm('form')">Login</button>
</fieldset>
</form>
</body>
</html>