1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- <%@ taglib prefix='c' uri='http://java.sun.com/jsp/jstl/core' %>
- <%@ taglib prefix="form" uri="http://www.springframework.org/tags/form" %>
- <?xml version="1.0" encoding="utf-8"?>
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <title>OpenID Login</title>
- <!-- Simple OpenID Selector -->
- <link rel="stylesheet" href="<c:url value='/css/openid.css'/>" />
- <script type="text/javascript" src="<c:url value='/js/jquery-3.5.1.min.js'/>"></script>
- <script type="text/javascript" src="<c:url value='/js/openid-jquery.js'/>"></script>
- <script type="text/javascript">
- $(document).ready(function() {
- openid.init('openid_identifier');
- // openid.setDemoMode(true); Stops form submission for client javascript-only test purposes
- });
- </script>
- <!-- /Simple OpenID Selector -->
- <style type="text/css">
- /* Basic page formatting. */
- body {
- font-family:"Helvetica Neue", Helvetica, Arial, sans-serif;
- }
- </style>
- </head>
- <body>
- <p><strong>
- NOTE: The OpenID 1.0 and 2.0 protocols have been deprecated and users are
- <a href="https://openid.net/specs/openid-connect-migration-1_0.html">encouraged to migrate</a>
- to <a href="https://openid.net/connect/">OpenID Connect</a>, which is supported by <code>spring-security-oauth2</code>.
- </strong></p>
- <c:if test="${not empty param.login_error}">
- <font color="red">
- Your login attempt was not successful, try again.<br/><br/>
- Reason: <c:out value="${SPRING_SECURITY_LAST_EXCEPTION.message}"/>.
- </font>
- </c:if>
- <!-- Simple OpenID Selector -->
- <form:form action="login/openid" method="post" id="openid_form">
- <input type="hidden" name="action" value="verify" />
- <fieldset>
- <legend>Sign-in or Create New Account</legend>
- <div id="openid_choice">
- <p>Please click your account provider:</p>
- <div id="openid_btns"></div>
- </div>
- <div id="openid_input_area">
- <input id="openid_identifier" name="openid_identifier" type="text" value="http://" />
- <input id="openid_submit" type="submit" value="Sign-In"/>
- </div>
- <noscript>
- <p>OpenID is a service that allows you to log-on to many different websites using a single identity.
- Find out <a href="https://openid.net/what/">more about OpenID</a> and <a href="https://openid.net/get/">how to get an OpenID enabled account</a>.</p>
- </noscript>
- </fieldset>
- </form:form>
- <!-- /Simple OpenID Selector -->
- </body>
- </html>
|