diff options
Diffstat (limited to 'templates/password/new.html')
-rw-r--r-- | templates/password/new.html | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/templates/password/new.html b/templates/password/new.html new file mode 100644 index 0000000..e45e24f --- /dev/null +++ b/templates/password/new.html @@ -0,0 +1,19 @@ +{% extends "layout.html" %} + +{% block content %} +<div class="container"> + <div class="row"> + <div class="span11"> + <h2>Change Password</h2> + <br> + <form action="{% url 'sbhs_server.password.views.email' %}" method="POST"> + {% csrf_token %} + <label for="email">Email</label> + <input type="email" name="email" id="email" required> + <br> + <input type="submit" class="btn btn-primary" value="Send password change link"> + </form> + </div> + </div> +</div> +{% endblock %}
\ No newline at end of file |