Advertisement
robertvari

password_reset_form.html

Dec 19th, 2019
390
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.87 KB | None | 0 0
  1. {% extends '_base.html' %}
  2.  
  3. {% block body %}
  4.         <div class="center_page_container">
  5.             <div class="center_box">
  6.  
  7.               <form method="POST" class="input_form">
  8.                 <div class="center_subtext">Forgot your password?</div>
  9.                   <hr>
  10.                 <p align="center">Enter your email address below, and we'll email instructions for setting a new one</p>
  11.                 {% csrf_token %}
  12.  
  13.                   <input class="text_input" type="email" name="{{ form.email.html_name }}" id="{{ form.email.id_for_label }}" value="{% if form.email.value %}{{ form.email.value }}{% endif %}" placeholder="Email">
  14.  
  15.                 <div class="button_layout">
  16.                     <button type="submit" class="button">Send me instructions!</button>
  17.                 </div>
  18.               </form>
  19.  
  20.             </div>
  21.         </div>
  22. {% endblock %}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement