Advertisement
Guest User

Untitled

a guest
Mar 29th, 2019
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 1.67 KB | None | 0 0
  1. <form method="POST" class="form bg-white boxshadow">
  2.     {% csrf_token %}
  3.     <div class="form__headers txt-white">
  4.         <a href="." class="form__headers__header bg-blue nolink">
  5.             <h2>
  6.                 login
  7.             </h2>
  8.             <div class="form__headers__header__arrow"></div>
  9.         </a>
  10.         <a href="{% url 'users:signup' %}" class="nolink form__headers__header bg-cyan">
  11.             <h2>
  12.                 signup
  13.             </h2>
  14.         </a>
  15.     </div>
  16.     <div class="form__content">
  17.         <div class="form__field">
  18.             <label for="username" class="form__label">
  19.                 username
  20.             </label>
  21.             <div class="input-with-icon">
  22.                 {% render_field form.username class+="form__input" %}
  23.                 <i class="material-icons">
  24.                     person
  25.                 </i>
  26.             </div>
  27.         </div>
  28.         <div class="form__field">
  29.             <label for="password" class="form__label">
  30.                 password
  31.             </label>
  32.             <div class="input-with-icon">
  33.                 {% render_field form.password class+="form__input" %}
  34.                 <i class="material-icons">
  35.                     lock
  36.                 </i>
  37.             </div>
  38.         </div>
  39.         <div class="form__field">
  40.             <button class="form__btn bg-cyan txt-white boxshadow" type="submit">Login
  41.                 <i class="material-icons">
  42.                     send
  43.                 </i>
  44.             </button>
  45.         </div>
  46.         <div class="form__field txt-center">
  47.             <a href="{% url 'users:password_reset' %}">Forgot Password?</a>
  48.         </div>
  49.     </div>
  50. </form>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement