Advertisement
robertvari

password_change_form.html

Dec 19th, 2019
270
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.43 KB | None | 0 0
  1. {% extends '_base.html' %}
  2.  
  3. {% block title %} Change Password {% endblock title %}
  4.  
  5. {% block body %}
  6.     <form method="post" class="input_form">
  7.         {% csrf_token %}
  8.  
  9.         <div class="form_title"> <span class="creative">Creative</span>Portal: Change Password</div>
  10.         <hr>
  11.  
  12.         {{ form.as_p }}
  13.  
  14.         <hr>
  15.         <button type="submit" class="button">Update Password</button>
  16.     </form>
  17. {% endblock body %}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement