mirror of
https://github.com/DSpace/DSpace.git
synced 2025-10-18 07:23:08 +00:00
[DS-2701] Correct login JSPs.
This commit is contained in:
@@ -24,7 +24,8 @@
|
|||||||
|
|
||||||
<%@ page import="org.dspace.app.webui.util.JSPManager" %>
|
<%@ page import="org.dspace.app.webui.util.JSPManager" %>
|
||||||
<%@ page import="org.dspace.app.webui.util.UIUtil" %>
|
<%@ page import="org.dspace.app.webui.util.UIUtil" %>
|
||||||
<%@ page import="org.dspace.authenticate.AuthenticationServiceImpl" %>
|
<%@ page import="org.dspace.authenticate.factory.AuthenticateServiceFactory" %>
|
||||||
|
<%@ page import="org.dspace.authenticate.service.AuthenticationService" %>
|
||||||
<%@ page import="org.dspace.authenticate.AuthenticationMethod" %>
|
<%@ page import="org.dspace.authenticate.AuthenticationMethod" %>
|
||||||
<%@ page import="org.dspace.core.Context" %>
|
<%@ page import="org.dspace.core.Context" %>
|
||||||
<%@ page import="org.dspace.core.LogManager" %>
|
<%@ page import="org.dspace.core.LogManager" %>
|
||||||
@@ -39,11 +40,10 @@
|
|||||||
<table border="0" width="90%">
|
<table border="0" width="90%">
|
||||||
<tr>
|
<tr>
|
||||||
<td align="left">
|
<td align="left">
|
||||||
<%-- <H1>Log In to DSpace</H1> --%>
|
|
||||||
<h1><fmt:message key="jsp.login.chooser.heading"/></h1>
|
<h1><fmt:message key="jsp.login.chooser.heading"/></h1>
|
||||||
</td>
|
</td>
|
||||||
<td align="right" class="standard">
|
<td align="right" class="standard">
|
||||||
<dspace:popup page="<%= LocaleSupport.getLocalizedMessage(pageContext, \"help.index\") + \"#login\" %>"><fmt:message key="jsp.help"/></dspace:popup>
|
<dspace:popup page='<%= LocaleSupport.getLocalizedMessage(pageContext, "help.index") + "#login" %>'><fmt:message key="jsp.help"/></dspace:popup>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
@@ -54,7 +54,8 @@
|
|||||||
<h2><fmt:message key="jsp.login.chooser.chooseyour"/></h2>
|
<h2><fmt:message key="jsp.login.chooser.chooseyour"/></h2>
|
||||||
<ul>
|
<ul>
|
||||||
<%
|
<%
|
||||||
Iterator ai = AuthenticationServiceImpl.authenticationMethodIterator();
|
AuthenticationService authenticationService = AuthenticateServiceFactory.getInstance().getAuthenticationService();
|
||||||
|
Iterator ai = authenticationService.authenticationMethodIterator();
|
||||||
AuthenticationMethod am;
|
AuthenticationMethod am;
|
||||||
Context context = null;
|
Context context = null;
|
||||||
try
|
try
|
||||||
|
Reference in New Issue
Block a user