Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for newPassword (0.21 sec)

  1. src/main/webapp/WEB-INF/orig/view/login/newpassword.jsp

    			<div class="card-body login-card-body">
    				<p class="login-box-msg">
    					<la:message key="labels.login.newpassword" />
    				</p>
    				<%-- Message --%>
    				<div>
    					<la:info id="msg" message="false">
    						<div class="alert alert-info">${msg}</div>
    					</la:info>
    					<la:errors />
    				</div>
    				<la:form styleId="newPassword" method="post">
    					<div class="input-group mb-3">
    						<c:set var="ph_new_password">
    Others
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Fri Feb 17 12:13:41 GMT 2023
    - 3K bytes
    - Viewed (0)
  2. src/main/webapp/WEB-INF/view/login/newpassword.jsp

    			<div class="card-body login-card-body">
    				<p class="login-box-msg">
    					<la:message key="labels.login.newpassword" />
    				</p>
    				<%-- Message --%>
    				<div>
    					<la:info id="msg" message="false">
    						<div class="alert alert-info">${msg}</div>
    					</la:info>
    					<la:errors />
    				</div>
    				<la:form styleId="newPassword" method="post">
    					<div class="input-group mb-3">
    						<c:set var="ph_new_password">
    Others
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Fri Feb 17 12:13:41 GMT 2023
    - 3K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/profile/ProfileForm.java

    public class ProfileForm {
    
        @NotBlank
        public String oldPassword;
    
        @NotBlank
        public String newPassword;
    
        @NotBlank
        public String confirmNewPassword;
    
        public void clearSecurityInfo() {
            oldPassword = null;
            newPassword = null;
            confirmNewPassword = null;
        }
    
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 1K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/profile/ProfileAction.java

        private void validatePasswordForm(final ProfileForm form, final VaErrorHook validationErrorLambda) {
            validate(form, messages -> {}, validationErrorLambda);
    
            if (!form.newPassword.equals(form.confirmNewPassword)) {
                form.newPassword = null;
                form.confirmNewPassword = null;
                throwValidationError(messages -> {
                    messages.addErrorsInvalidConfirmPassword(GLOBAL);
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 3.7K bytes
    - Viewed (0)
  5. src/main/resources/fess.xml

    		</postConstruct>
    		<postConstruct name="addDesignJspFileName">
    			<arg>"login"</arg>
    			<arg>"login/index.jsp"</arg>
    		</postConstruct>
    		<postConstruct name="addDesignJspFileName">
    			<arg>"newpassword"</arg>
    			<arg>"login/newpassword.jsp"</arg>
    		</postConstruct>
    		<postConstruct name="addDesignJspFileName">
    			<arg>"profile"</arg>
    			<arg>"profile/index.jsp"</arg>
    		</postConstruct>
    	</component>
    XML
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Sat Jan 01 06:48:48 GMT 2022
    - 5.2K bytes
    - Viewed (0)
  6. src/main/webapp/WEB-INF/view/profile/index.jsp

    						</div>
    					</div>
    					<div class="input-group mb-3">
    						<c:set var="ph_new_password">
    							<la:message key="labels.profile.placeholder_new_password" />
    						</c:set>
    						<la:password property="newPassword" class="form-control"
    									 placeholder="${ph_new_password}" />
    						<div class="input-group-append">
    							<span class="input-group-text"><em class="fa fa-lock fa-fw"></span>
    						</div>
    					</div>
    Others
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Fri Feb 17 12:13:41 GMT 2023
    - 3.6K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/login/LoginAction.java

                userService.changePassword(username, form.password);
                saveInfo(messages -> messages.addSuccessChangedPassword(GLOBAL));
            } catch (final Exception e) {
                logger.warn("Failed to change newPassword for {}", username, e);
                throwValidationError(messages -> messages.addErrorsFailedToChangePassword(GLOBAL), toIndexPage);
            }
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 6.1K bytes
    - Viewed (0)
  8. src/main/webapp/WEB-INF/orig/view/profile/index.jsp

    						</div>
    					</div>
    					<div class="input-group mb-3">
    						<c:set var="ph_new_password">
    							<la:message key="labels.profile.placeholder_new_password" />
    						</c:set>
    						<la:password property="newPassword" class="form-control"
    									 placeholder="${ph_new_password}" />
    						<div class="input-group-append">
    							<span class="input-group-text"><em class="fa fa-lock fa-fw"></span>
    						</div>
    					</div>
    Others
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Fri Feb 17 12:13:41 GMT 2023
    - 3.6K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/mylasta/action/FessHtmlPath.java

        /** The path of the HTML: /login/index.jsp */
        HtmlNext path_Login_IndexJsp = new HtmlNext("/login/index.jsp");
    
        /** The path of the HTML: /login/newpassword.jsp */
        HtmlNext path_Login_NewpasswordJsp = new HtmlNext("/login/newpassword.jsp");
    
        /** The path of the HTML: /profile/index.jsp */
        HtmlNext path_Profile_IndexJsp = new HtmlNext("/profile/index.jsp");
    
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 26.4K bytes
    - Viewed (0)
  10. src/main/resources/fess_label.properties

    labels.ldapBaseDn=Base DN
    labels.ldapAccountFilter=Account Filter
    labels.ldapGroupFilter=Group Filter
    labels.ldapMemberofAttribute=memberOf Attribute
    labels.oldPassword=Current Password
    labels.newPassword=New Password
    labels.confirmNewPassword=New Password(Confirm)
    
    labels.menu_system=System
    labels.menu_wizard=Wizard
    labels.menu_crawl_config=General
    labels.menu_scheduler_config=Scheduler
    Properties
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 40.7K bytes
    - Viewed (1)
Back to top