{% extends "base.html" %} {% load static %} {% block content %}

My Profile

Manage your account information

{% csrf_token %}
User Information
{{ u_form.first_name }} {% if u_form.first_name.errors %}
{{ u_form.first_name.errors }}
{% endif %}
{{ u_form.last_name }} {% if u_form.last_name.errors %}
{{ u_form.last_name.errors }}
{% endif %}
{{ u_form.email }} {% if u_form.email.errors %}
{{ u_form.email.errors }}
{% endif %}
{% if v_form %}
Volunteer Details
{{ v_form.phone }} {% if v_form.phone.errors %}
{{ v_form.phone.errors }}
{% endif %}
{% endif %}
Change Password
{% endblock %}