{% extends "base.html" %} {% import "macros.html" as macros %} {% block title %}Reset Password{% endblock title %} {% block head %} {{ super() }} {% endblock head %} {% block content %}

{% if not name %} You are about to change your password. Unbelievable! This is big, man, this is huge! Just kidding, input your new password

{{ macros::input(label="Password", class="reset-input",label_class="reset-label", type="password", name="new password") }} {{ macros::input(label="Re-enter Password", class="reset-input",type="password", label_class="reset-label", name="confirm password") }}

{{ macros::input(type="submit",class="submit-reset", value="change password") }}

{% else %} You have changed your password. With great success, buddy. This calls for paaaartyyyy! {% endif %}
{% endblock content %}