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

Your Profile

Keep your contact details up to date for project communication.

{% csrf_token %}
{{ form.first_name }} {{ form.first_name.errors }}
{{ form.last_name }} {{ form.last_name.errors }}
{{ form.email }} {{ form.email.errors }}
{{ form.company }} {{ form.company.errors }}
{{ form.phone }} {{ form.phone.errors }}
{{ form.timezone }} {{ form.timezone.errors }}
{% endblock %}