{% extends "accounts/base.html" %} {% block title %}Profile{% endblock %} {% block content %}

Update Profile

{% csrf_token %}
Basic Info {% for field in profile_form %}

{{ field.label_tag }}
{{ field }} {% if field.help_text %} {{ field.help_text }} {% endif %} {% for error in field.errors %}

{{ error }}
{% endfor %}

{% endfor %} {% url 'password_change' as password_change_url %}

{% if schwab_form %}
Schwab API Credentials {{ schwab_form.as_p }}
{% endif %}
{% endblock %}