Edit C:\dspace-6.2-release\dspace\modules\jspui\target\jspui-6.2\register\edit-profile.jsp
<%-- 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)); %> <dspace:layout style="submission" titlekey="jsp.register.edit-profile.title" nocache="true"> <%-- <h1>Edit Your Profile</h1> --%> <h1><fmt:message key="jsp.register.edit-profile.title"/> <dspace:popup page='<%= LocaleSupport.getLocalizedMessage(pageContext, "help.index") + "#editprofile"%>'><fmt:message key="jsp.morehelp"/></dspace:popup> </h1> <% if (missingFields) { %> <%-- <p><strong>Please fill out all of the required fields.</strong></p> --%> <p class="alert alert-info"><fmt:message key="jsp.register.edit-profile.info1"/></p> <% } if (passwordProblem) { %> <%-- <p><strong>The passwords you enter below must match, and need to be at least 6 characters long.</strong></p> --%> <p class="alert alert-warning"><fmt:message key="jsp.register.edit-profile.info2"/></p> <% } %> <div class="alert alert-info"><fmt:message key="jsp.register.edit-profile.info3"/></div> <form class="form-horizontal" action="<%= request.getContextPath() %>/profile" method="post"> <dspace:include page="/register/profile-form.jsp" /> <% // Only show password update section if the user doesn't use // certificates if ((eperson.getRequireCertificate() == false) && (ldap_eperson == false)) { %> <%-- <p><strong>Optionally</strong>, 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.</p> --%> <p class="alert"><fmt:message key="jsp.register.edit-profile.info5"/></p> <div class="form-group"> <label class="col-md-offset-3 col-md-2 control-label" for="tpassword"><fmt:message key="jsp.register.edit-profile.pswd.field"/></label> <div class="col-md-3"> <input class="form-control" type="password" name="password" id="tpassword" /> </div> </div> <div class="form-group"> <label class="col-md-offset-3 col-md-2 control-label" for="tpassword_confirm"><fmt:message key="jsp.register.edit-profile.confirm.field"/></label> <div class="col-md-3"> <input class="form-control" type="password" name="password_confirm" id="tpassword_confirm" /> </div> </div> <% } %> <div class="col-md-offset-5"> <%-- <p align="center"><input type="submit" name="submit" value="Update Profile"></p> --%> <input class="btn btn-success col-md-4" type="submit" name="submit" value="<fmt:message key="jsp.register.edit-profile.update.button"/>" /> </div> </form> </dspace:layout>
Ms-Dos/Windows
Unix
Write backup
jsp File Browser version 1.2 by
www.vonloesch.de