password_set.html 404 B

12345678910111213141516
  1. {% extends '_base.html' %}
  2. {% load crispy_forms_tags %}
  3. {% block title %}Set Password{% endblock title %}
  4. {% block content %}
  5. <form method="POST" action="" class="password_set">
  6. {% csrf_token %}
  7. {{ form | crispy }}
  8. <div class="form-actions">
  9. <button class="btn btn-primary" type="submit" name="action" value="Set Password">Change
  10. Password</button>
  11. </div>
  12. </form>
  13. {% endblock content %}