Guest User

Untitled

a guest
Dec 11th, 2017
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.98 KB | None | 0 0
  1. {% extends "layout/base.html" %}
  2.  
  3. {% block title %}restablecer contraseña{% endblock %}
  4.  
  5. {% block content %}
  6. <section class="PasswordResetConfirm">
  7. <div class="row">
  8. <div class="col-md-4 offset-md-4">
  9. <h3>Restablecer contraseña.</h3>
  10. <form method="post">
  11. {% csrf_token %}
  12. {% if form.non_field_errors %}
  13. <div class="formGroup">
  14. {{ form.non_field_errors }}
  15. </div>
  16. {% endif %}
  17. <div class="formGroup">
  18. {{ form.new_password1.label_tag }}
  19. {{ form.new_password1 }}
  20. {{ form.new_password1.errors }}
  21. </div>
  22. <div class="formGroup">
  23. {{ form.new_password2.label_tag }}
  24. {{ form.new_password2 }}
  25. {{ form.new_password2.errors }}
  26. </div>
  27. <button class="btn btn-success" type="submit">Restablecer"</button>
  28. </form>
  29. </div>
  30. </div>
  31. </section>
  32. {% endblock %}
Add Comment
Please, Sign In to add comment