Advertisement
Aleksandr37rus

Untitled

Oct 12th, 2022
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  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. <un:useConstants className="xxrsv.endeca.domain.Constants" var="Constants" />
  7. <un:useConstants className="xxrsv.endeca.domain.Keys" var="Keys" />
  8. <!DOCTYPE html>
  9. <html lang="ru">
  10. <head>
  11.  
  12.     <title><spring:message code="${Keys.PRMT_SIGN_IN_G}"/></title>
  13.  
  14.     <jsp:include page="includes/assets.jsp" />
  15.     <link href="${staticPrefix}${Constants.STATIC_OA_MEDIA_ENDECA_PATH}/style/rs/template.forms.css?ver=2" rel="stylesheet">
  16.  
  17.     <link href="${staticPrefix}${Constants.STATIC_OA_MEDIA_ISTORE_PATH}/vanilla/css/temp/components/login_form/style.min.css" rel="stylesheet">
  18.  
  19.     <script type="text/javascript" src="${staticPrefix}${Constants.STATIC_OA_MEDIA_ISTORE_PATH}/vanilla/css/temp/components/common/script.js?ver=7"></script>
  20. </head>
  21. <body>
  22.  
  23. <jsp:include page="includes/vars.jsp" />
  24.  
  25. <div class="main-wrapper">
  26.     <jsp:include page="includes/header.jsp"/>
  27.     <div class="content content_top-margin">
  28.         <div class="container-fluid">
  29.             <div class="row">
  30.                 <div class="col-xs-12" style="width: 100%">
  31.                     <div class="wrapper">
  32.                         <div id="toTop" class="button-up">
  33.                             <a href="#" class="js-button-up"></a>
  34.                         </div>
  35.                         <div class="page-title-box">
  36.                             <h1 class="page-title page-title_centered"><spring:message code="${Keys.PRMT_SIGN_IN_G}"/></h1>
  37.                         </div>
  38.                         <div class="form-box form-box_centered">
  39.                             <div class="white-back center-box">
  40.                                 <c:set var="msAuthUrl" value="${pageContext.request.contextPath}/authorize"/>
  41.                                 <div class="login-form-switch">
  42.                                     <div
  43.                                             class="js-switch-login-form login-form-switch__item login-form-switch__item_business login-form-switch__item_active">
  44.                                         <div class="login-form-switch-item__icon login-form-switch-item__icon_business"></div>
  45.                                         <div class="login-form-switch-item__text">Юридическое лицо</div>
  46.                                     </div>
  47.                                     <div class="js-switch-login-form login-form-switch__item login-form-switch__item_customer">
  48.                                         <div class="login-form-switch-item__icon login-form-switch-item__icon_customer"></div>
  49.                                         <div class="login-form-switch-item__text">Физическое лицо</div>
  50.                                     </div>
  51.                                 </div>
  52.                                 <form class="login-form login-form_business form-box__form" name="mainFormB2B"
  53.                                       id="mainFormB2B"
  54.                                       method="post"
  55.                                       action="${util:sanitizeUrl(msAuthUrl)}">
  56.                                     <input type="hidden" name="event" value="">
  57.                                     <input type="hidden" name="isFirstEntry" value="true">
  58.                                     <input type="hidden" name="targetUrlParameter" value="${userSession.refDecoded}">
  59.                                     <input type="hidden" name="userType" value="ORGANIZATION">
  60.                                     <%-- <input type="hidden" name="${_csrf.parameterName}" value="${_csrf.token}" /> --%>
  61.                                     <div class="form-box__group">
  62.                                         <div class="form-box__label-box">
  63.                                             <label for="usernameB2B" class="form-box__label"><spring:message
  64.                                                     code="${Keys.PRMT_USERNAME_COL}"/></label>
  65.                                         </div>
  66.                                         <div class="input-row form-box__input-box">
  67.                                             <input type="text" name="username" id="usernameB2B" placeholder='<spring:message code="${Keys.AUTH_USER_NAME}"/>'
  68.                                                    data-validation="required" value="${username}" style="margin: 0;">
  69.                                         </div>
  70.                                     </div>
  71.                                     <div class="form-box__group">
  72.                                         <div class="form-box__label-box">
  73.                                             <label for="passwordB2B" class="form-box__label"><spring:message
  74.                                                     code="${Keys.PRMT_PWD_COL}"/></label>
  75.                                         </div>
  76.                                         <div class="input-row form-box__input-box">
  77.                                             <input id="passwordB2B" type="password" name="password"
  78.                                                    placeholder='<spring:message code="${Keys.AUTH_USER_PASSWORD}"/>' data-validation="required" style="margin: 0;">
  79.                                             <c:if test="${!empty SPRING_SECURITY_LAST_EXCEPTION.message}">
  80.                                                 <span class="help-block form-error">${SPRING_SECURITY_LAST_EXCEPTION.message}</span>
  81.                                             </c:if>
  82.                                             <c:if test="${!empty techErrorMessage}">
  83.                                                 <span class="help-block form-error">${techErrorMessage}</span>
  84.                                             </c:if>
  85.                                         </div>
  86.                                     </div>
  87.                                     <div class="form-box__group">
  88.                                         <button type="submit" class="btn red-btn form-box__btn"><spring:message code="${Keys.AUTH_BTN_LOGIN}"/></button>
  89.                                     </div>
  90.                                     <div class="form-box__group form-box__group_centered">
  91.                                         <a href="${pageContext.request.contextPath}/password_forgot" class="form-box__link"><spring:message code="${Keys.AUTH_PWD_FORGET}"/></a>
  92.                                     </div>
  93.                                     <div class="form-box__group form-box__group_centered">
  94.                                         <a class="form-box__link js-reg-popup" href="javascript:void(0);"><spring:message code="${Keys.NEW_USER_REG}"/></a>
  95.                                     </div>
  96.                                 </form>
  97.                                 <form class="login-form login-form_customer form-box__form hidden"
  98.                                       name="mainFormB2C"
  99.                                       id="mainFormB2C"
  100.                                       method="post"
  101.                                       action="${util:sanitizeUrl(msAuthUrl)}"
  102.                                       autocomplete="off">
  103.                                     <input type="hidden" name="event" value="">
  104.                                     <input type="hidden" name="isFirstEntry" value="true">
  105.                                     <input type="hidden" name="targetUrlParameter" value="${userSession.refDecoded}">
  106.                                     <input type="hidden" name="userType" value="PERSON">
  107.                                     <input type="hidden" id="authType" name="authType" value="SMS_AUTH">
  108.                                     <%-- <input type="hidden" name="${_csrf.parameterName}" value="${_csrf.token}" /> --%>
  109.                                     <div class="form-box__group">
  110.                                         <div class="form-box__label-box">
  111.                                             <label for="usernameB2C" class="form-box__label"><spring:message
  112.                                                     code="${Keys.PRMT_PHONE_COL}"/></label>
  113.                                         </div>
  114.                                         <div class="input-row form-box__input-box">
  115.                                             <div class="js-input-wrap">
  116.                                                 <input id="usernameB2C" type="text" name="username"
  117.                                                        placeholder='<spring:message code="${Keys.AUTH_USER_NAME}"/>'
  118.                                                        data-validation="required" value="${username}" style="margin: 0;" autocomplete="off">
  119.                                             </div>
  120.                                         </div>
  121.                                     </div>
  122.                                     <div class="form-box__group">
  123.                                         <div class="form-box__label-box password-auth">
  124.                                             <label for="passwordB2C" class="form-box__label"><spring:message
  125.                                                     code="${Keys.PRMT_PWD_COL}"/></label>
  126.                                         </div>
  127.                                         <div class="input-row form-box__input-box password-auth">
  128.                                             <input id="passwordB2C" type="password" name="password"
  129.                                                    placeholder='<spring:message
  130.                                                        code="${Keys.AUTH_USER_PASSWORD}"/>' data-validation="required" style="margin: 0;" autocomplete="off">
  131.                                             <c:if test="${!empty SPRING_SECURITY_LAST_EXCEPTION.message}">
  132.                                                 <span class="help-block form-error">${SPRING_SECURITY_LAST_EXCEPTION.message}</span>
  133.                                             </c:if>
  134.                                             <c:if test="${!empty techErrorMessage}">
  135.                                                 <span class="help-block form-error">${techErrorMessage}</span>
  136.                                             </c:if>
  137.                                         </div>
  138.                                     </div>
  139.                                     <div class="form-box__group sms-auth-step1">
  140.                                         <button type="button" class="btn red-btn form-box__btn js-get-sms"><spring:message code="${Keys.AUTH_GET_SMS_CODE}"/></button>
  141.                                     </div>
  142.                                     <div class="form-box__group  sms-auth-step2">
  143.                                         <button id="smsAuthCountDown" type="button" class="btn blue-btn form-box__btn">66:66</button>
  144.                                     </div>
  145.                                     <div class="form-box__group sms-auth-step2">
  146.                                         <div class="form-box__label-box">
  147.                                             <label for="passwordB2C" class="form-box__label"><spring:message
  148.                                                     code="${Keys.AUTH_SMS_CODE}"/></label>
  149.                                         </div>
  150.                                         <div class="sms-auth-container">
  151.                                             <input class="js-numeric" id="authCode" name="authCode" type="text" style="margin: 0;" autocomplete="off">
  152.                                         </div>
  153.                                     </div>
  154.                                     <div class="form-box__group password-auth">
  155.                                         <button type="submit" class="btn red-btn form-box__btn"><spring:message code="${Keys.AUTH_BTN_LOGIN}"/></button>
  156.                                     </div>
  157.                                     <div class="form-box__group form-box__group_centered password-auth">
  158.                                         <a href="javascript:void(0);" id="enterBySms" class="form-box__enter-by-sms"><spring:message code="${Keys.AUTH_ENTER_BY_SMS}"/></a>
  159.                                     </div>
  160.                                     <div class="form-box__group form-box__group_centered sms-auth-step1 sms-auth-step2">
  161.                                         <a href="javascript:void(0);" id="enterByPhoneNum" class="form-box__enter-by-phone-num"><spring:message code="${Keys.AUTH_ENTER_BY_PHONE_NUM}"/></a>
  162.                                     </div>
  163.                                     <div class="form-box__group form-box__group_centered">
  164.                                         <a href="${pagecontext.request.contextPath}/password_forgot" class="form-box__link"><spring:message code="${Keys.AUTH_PWD_FORGET}"/></a>
  165.                                     </div>
  166.                                     <div class="form-box__group form-box__group_centered">
  167.                                         <a class="form-box__link js-reg-popup" href="javascript:void(0);"><spring:message code="${Keys.NEW_USER_REG}"/></a>
  168.                                     </div>
  169.                                 </form>
  170.                             </div>
  171.                         </div>
  172.                     </div>
  173.                 </div>
  174.             </div>
  175.         </div>
  176.     </div>
  177. </div>
  178. <c:if test="${!empty SPRING_SECURITY_LAST_EXCEPTION.message}">
  179.     <c:remove var="SPRING_SECURITY_LAST_EXCEPTION" scope="session"/>
  180. </c:if>
  181. <jsp:include page="includes/footer.jsp"/>
  182. <script src="${staticPrefix}${Constants.STATIC_OA_MEDIA_ISTORE_PATH}/vanilla/css/temp/components/login_form/script.min.js?ver=2"></script>
  183. </body>
  184. </html>
  185.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement