- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 17 for newPassword (0.1 sec)
-
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">
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Oct 26 01:07:52 UTC 2024 - 3K bytes - Viewed (0) -
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">
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Oct 26 01:07:52 UTC 2024 - 3K bytes - Viewed (0) -
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);
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 3.7K bytes - Viewed (0) -
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; }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 1K bytes - Viewed (0) -
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>
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sun Jul 28 09:03:48 UTC 2024 - 5.2K bytes - Viewed (0) -
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>
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Oct 26 01:07:52 UTC 2024 - 3.6K bytes - Viewed (0) -
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>
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Oct 26 01:07:52 UTC 2024 - 3.6K bytes - Viewed (0) -
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); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 6.1K bytes - Viewed (0) -
src/main/resources/fess_label_en.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
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Mar 22 11:58:34 UTC 2024 - 40.7K bytes - Viewed (0) -
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");
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 26.4K bytes - Viewed (0)