{% extends "base.html" %} {% block title %}Profile{% endblock %} {% block content %} Your Profile Keep your contact details up to date for project communication. {% csrf_token %} First name * {{ form.first_name }} {{ form.first_name.errors }} Last name * {{ form.last_name }} {{ form.last_name.errors }} Email * {{ form.email }} {{ form.email.errors }} Company {{ form.company }} {{ form.company.errors }} Phone {{ form.phone }} {{ form.phone.errors }} Timezone * {{ form.timezone }} {{ form.timezone.errors }} Save profile {% endblock %}
Keep your contact details up to date for project communication.