Advertisement
Aleksandr37rus

Untitled

Oct 17th, 2022
164
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5.88 KB | None | 0 0
  1. <%@ page contentType="text/html;charset=UTF-8" language="java" %>
  2. <%@ taglib uri="http://jakarta.apache.org/taglibs/unstandard-1.0" prefix="un" %>
  3. <%@ taglib prefix="spring" uri="http://www.springframework.org/tags" %>
  4. <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
  5. <%@ taglib prefix="util" uri="/WEB-INF/tlds/functions.tld" %>
  6. <%@ taglib prefix="form" uri="http://www.springframework.org/tags/form" %>
  7. <un:useConstants className="xxrsv.endeca.domain.Constants" var="Constants"/>
  8. <un:useConstants className="xxrsv.endeca.domain.Keys" var="Keys"/>
  9. <!DOCTYPE html>
  10. <html lang="ru">
  11. <head>
  12.  
  13.     <title><spring:message code="${Keys.PRMT_CHANGE_PASSWORD_G}"/></title>
  14.  
  15.     <jsp:include page="includes/assets.jsp"/>
  16.     <link href="${staticPrefix}${Constants.STATIC_OA_MEDIA_ENDECA_PATH}/style/rs/template.forms.css?ver=2" rel="stylesheet">
  17.    
  18.  
  19. </head>
  20. <body>
  21. <jsp:include page="includes/vars.jsp"/>
  22.  
  23. <div class="main-wrapper">
  24.     <jsp:include page="includes/header.jsp"/>
  25.     <div class="content content_top-margin">
  26.         <div class="container-fluid">
  27.             <div class="row">
  28.                 <div class="col-xs-12" style="width: 100%;">
  29.                     <div class="wrapper">
  30.                         <div id="toTop" class="button-up">
  31.                             <a href="#" class="js-button-up"></a>
  32.                         </div>
  33.                         <div class="page-title-box">
  34.                             <div class="page-title-box__left">
  35.                                 <h1 class="page-title page-title_centered">
  36.                                     <spring:message code="${Keys.PRMT_RESET_PWD}"/></h1>
  37.                             </div>
  38.                         </div>
  39.                         <div class="form-box form-box_centered form-box_reset-password">
  40.  
  41.                             <c:if test="${!empty SPRING_SECURITY_LAST_EXCEPTION.message}">
  42.                                 <div class="white-back center-box">
  43.                                     <div class="form-box__info">${SPRING_SECURITY_LAST_EXCEPTION.message}</div>
  44.                                 </div>
  45.                                 <c:remove var="SPRING_SECURITY_LAST_EXCEPTION" scope="session"/>
  46.                             </c:if>
  47.  
  48.                             <div class="white-back center-box">
  49.                                 <c:set var="msPwdUpdateUrl"
  50.                                        value="${pageContext.request.contextPath}/password_update"/>
  51.                                 <form:form method="post" class="form-box__form"
  52.                                             action="${util:sanitizeUrl(msPwdUpdateUrl)}?userType=ORGANIZATION"
  53.                                            name="mainForm" modelAttribute="userPassword">
  54.                                     <input type="HIDDEN" name="event" value="">
  55.                                     <input type="hidden" name="isFirstEntry" value="true">
  56.                                     <input type="hidden" name="targetUrlParameter" value="${userSession.refDecoded}">
  57.                                     <form:input type="hidden" path="hardToGuessValidaion"
  58.                                                 value="${userPassword.hardToGuessValidaion}"/>
  59.                                     <form:input type="hidden" path="passwordLengthMin"
  60.                                                 value="${userPassword.passwordLengthMin}"/>
  61.                                     <form:input type="hidden" path="customValidation"
  62.                                                 value="${userPassword.customValidation}"/>
  63.                                     <div class="form-box__group">
  64.                                         <div class="form-box__label-box">
  65.                                             <form:label for="username" class="form-box__label" path="username">
  66.                                                 <spring:message code="${Keys.PRMT_USERNAME_COL}"/></form:label>
  67.                                         </div>
  68.                                         <div class="input-row form-box__input-box">
  69.                                             <form:input id="username" type="text" path="username" size="20"
  70.                                                         style="margin: 0;" readonly="readonly"/>
  71.                                         </div>
  72.                                     </div>
  73.                                     <div class="form-box__group">
  74.                                         <div class="form-box__label-box">
  75.                                             <form:label for="oldPassword" class="form-box__label" path="oldPassword">
  76.                                                 <spring:message code="${Keys.PRMT_PWD_COL}"/></form:label>
  77.                                         </div>
  78.                                         <div class="input-row form-box__input-box">
  79.                                             <form:input id="oldPassword" type="password" path="oldPassword" size="20"
  80.                                                         style="margin: 0;"/>
  81.                                         </div>
  82.                                     </div>
  83.                                     <div class="form-box__group">
  84.                                         <div class="form-box__label-box">
  85.                                             <form:label for="password" class="form-box__label" path="password">
  86.                                                 <spring:message code="${Keys.PRMT_NEW_PWD_COL}"/></form:label>
  87.                                         </div>
  88.                                         <div class="input-row form-box__input-box">
  89.                                             <form:input id="password" type="password" path="password" size="20"
  90.                                                         style="margin: 0;"/>
  91.                                         </div>
  92.                                     </div>
  93.                                     <div class="form-box__group">
  94.                                         <div class="form-box__label-box">
  95.                                             <form:label for="confirmPassword" class="form-box__label"
  96.                                                         path="confirmPassword">
  97.                                                 <spring:message code="${Keys.PRMT_CONFIRM_PWD_COL}"/></form:label>
  98.                                         </div>
  99.                                         <div class="input-row form-box__input-box">
  100.                                             <form:input id="confirmPassword" type="password" path="confirmPassword"
  101.                                                         size="20" style="margin: 0;"/>
  102.                                         </div>
  103.                                         <c:if test="${!empty errorMessage}">
  104.                                             <span class="help-block form-error">${errorMessage}</span>
  105.                                             <c:remove var="errorMessage" scope="session"/>
  106.                                         </c:if>
  107.                                         <span class="help-block form-error"><form:errors path="oldPassword"/></span>
  108.                                         <span class="help-block form-error"><form:errors path="password"/></span>
  109.                                         <span class="help-block form-error"><form:errors path="confirmPassword"/></span>
  110.                                         <SPAN class="footnote">
  111.                                                         <spring:message code="${Keys.PRMT_MIN_PASSWORD}"
  112.                                                                         arguments="${userPassword.passwordLengthMin}"/>
  113.                                                     </SPAN>
  114.                                     </div>
  115.                                     <div class="form-box__group">
  116.                                         <button type="submit" alt='<spring:message code="${Keys.PRMT_APPLY_G}"/>'
  117.                                                 class="btn red-btn form-box__btn btn_small-height"><spring:message
  118.                                                 code="${Keys.PRMT_APPLY_G}"/></button>
  119.                                     </div>
  120.                                 </form:form>
  121.                             </div>
  122.                         </div>
  123.                     </div>
  124.                 </div>
  125.             </div>
  126.         </div>
  127.     </div>
  128. </div>
  129. <jsp:include page="includes/footer.jsp"/>
  130. <script type="text/javascript" src="${staticPrefix}${Constants.STATIC_OA_MEDIA_VANILLA_CSS_COMPONENTS}/password_verification/password_verification.js?ver=2" charset="UTF-8"></script>
  131. </body>
  132. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement