Files
ipasso/resources/static/login/index.html

28 lines
746 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>SSO Login</title>
<script src="/login/login.js"></script>
</head>
<body>
<form method="post">
<table>
<tr>
<td><label for="user">User</label></td>
<td><input id="user" name="user" type="text"></td>
</tr>
<tr>
<td><label for="password">Password</label></td>
<td><input id="password" name="password" type="password"></td>
</tr>
<tr>
<td></td>
<td>
<input type="submit" value="Log in" id="doit">
</td>
</tr>
</table>
</form>
</body>
</html>