templates/flex/login.html line 1

Open in your IDE?
  1. {% extends "flex/base_block.html" %}
  2. {% block body %}
  3.                     <h1 class="Sbold">Вход для оптовых клиентов</h1>
  4.                     <p class="login-error">{{error}}</p>
  5.                     <form action="/auth" method="post" id="form_login">
  6.                         <div class="inpicon"><input required type="text" name="login" placeholder="Логин"><i class="fas fa-user"></i></div>
  7.                         <div class="inpicon"><input required type="password" name="password" placeholder="Пароль"><i class="fas fa-lock"></i>
  8.                             <label class="remember">
  9.                                 <input type="checkbox" name="remember" id="remember" class="hide">
  10.                                 <span>Запомнить меня</span>
  11.                             </label>
  12.                         </div>
  13.                         <input type="submit" value="Войти" class="Sbold hidden-sm hidden-md hidden-lg">
  14.                         {# <input type="button" id="forgot_password" value="Забыли пароль?"> #}
  15.                         <input type="submit" id="login_enter" value="Войти" class="Sbold hidden-xs">
  16.                         <input type="hidden" value="auth" name="method">
  17.                         
  18.                     </form>
  19.                     <div class="btmblock">
  20.                         <a href="/reg">Оставить заявку на регистрацию</a>
  21.                         <p>Получите доступ к платформе B2B -  станьте нашим <br class="hidden-xs">партнёром!</p>
  22.                     </div>
  23. {% endblock %}