Files
LightOidc/de.srsoftware.oidc.web/src/main/resources/en/login.html

25 lines
684 B
HTML

<html>
<head>
<title>Light OIDC</title>
<script src="config.js"></script>
<script src="index.js"></script>
</head>
<body>
<h1>Login</h1>
<form id="login">
<fieldset>
<legend>User credentials</legend>
<label>
Username
<input type="text" name="username" />
</label>
<label>
Password
<input type="password" name="password" />
</label>
<button type="button" onClick="tryLogin()">Login</button>
</fieldset>
</form>
<div id="error"></div>
</body>
</html>