{% extends "base.html" %} {% block content %}
Favorites

{% if favorites %}
    {% for favorite in favorites %}
  • {{ favorite }} Delete
  • {% endfor %}
{% else %}

You have no favorites yet.

{% endif %}
Change Password

{{ form.hidden_tag() if form }}
{{ form.current_password.label }} {{ form.current_password(class="form-control") }} {% for error in form.current_password.errors %}
{{ error }}
{% endfor %}
{{ form.new_password.label }} {{ form.new_password(class="form-control") }} {% for error in form.new_password.errors %}
{{ error }}
{% endfor %}
{{ form.confirm_password.label }} {{ form.confirm_password(class="form-control") }} {% for error in form.confirm_password.errors %}
{{ error }}
{% endfor %}
{% if current_user.is_authenticated and current_user.get_id() == "1" %} {% endif %}
{% endblock %}