<%-- The contents of this file are subject to the license and copyright detailed in the LICENSE and NOTICE files at the root of the source tree and available online at http://www.dspace.org/license/ --%> <%-- - Profile editing page - - Attributes to pass in: - - eperson - the EPerson who's editing their profile - missing.fields - if a Boolean true, the user hasn't entered enough - information on the form during a previous attempt - password.problem - if a Boolean true, there's a problem with password --%> <%@ page contentType="text/html;charset=UTF-8" %> <%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt" %> <%@ taglib uri="http://www.dspace.org/dspace-tags.tld" prefix="dspace" %> <%@ page import="javax.servlet.jsp.jstl.fmt.LocaleSupport" %> <%@ page import="org.dspace.eperson.EPerson, org.dspace.core.ConfigurationManager" %> <%@ page import="org.dspace.core.Utils" %> <% EPerson eperson = (EPerson) request.getAttribute("eperson"); Boolean attr = (Boolean) request.getAttribute("missing.fields"); boolean missingFields = (attr != null && attr.booleanValue()); attr = (Boolean) request.getAttribute("password.problem"); boolean passwordProblem = (attr != null && attr.booleanValue()); boolean ldap_enabled = ConfigurationManager.getBooleanProperty("authentication-ldap", "enable"); boolean ldap_eperson = (ldap_enabled && (eperson.getNetid() != null) && (eperson.getNetid().equals("") == false)); %> <%--

Edit Your Profile

--%>

<% if (missingFields) { %> <%--

Please fill out all of the required fields.

--%>

<% } if (passwordProblem) { %> <%--

The passwords you enter below must match, and need to be at least 6 characters long.

--%>

<% } %>
<% // Only show password update section if the user doesn't use // certificates if ((eperson.getRequireCertificate() == false) && (ldap_eperson == false)) { %> <%--

Optionally, you can choose a new password and enter it into the box below, and confirm it by typing it again into the second box for verification. It should be at least six characters long.

--%>

<% } %>
<%--

--%> " />