login.jsp revision 756d4b8bce5a58e5bd8fe686688b6c42d2e7052b
<!DOCTYPE html>
<html>
<head>
<title>OAuth2 Provider Login</title>
</head>
<body>
<form action="authenticate" method="post">
<label for="username">Username</label>
<input id="username" name="username"/>
<label for="password">Password</label>
<input id="password" name="password" type="password"/>
<input id="goto" name="goto" type="hidden" value="<%= request.getParameter("goto") %>">
<button type="submit">Login</button>
</form>
</body>
</html>