My Profile

{% if success %}
{{ success }}
{% endif %} {% if error %}
{{ error }}
{% endif %}
{{ user.first_name.0 }}{{ user.last_name.0 }}
{{ user.get_full_name }}
{{ user.email }}
{% if user.profile.verification_status == 'verified' %}
Verified Account
{% elif user.profile.verification_status == 'pending' %}
Verification Pending
{% elif user.profile.verification_status == 'rejected' %}
Verification Rejected
{% else %}
Not Verified
{% endif %}
{{ projects_count }}
Projects
{{ approved_payments_count }}
Payments

Personal Information

{% csrf_token %}
This email is used for login and notifications
Optional - for contact purposes

Change Password

{% csrf_token %}
Minimum 8 characters

Account Verification

{% if user.profile.verification_status == 'unverified' or user.profile.verification_status == 'rejected' %}
Verify your account
Upload a government-issued ID (passport, driver's license, or national ID) to verify your account. This helps us ensure security and compliance.
{% if user.profile.verification_status == 'rejected' and user.profile.verification_notes %}
Verification Rejected
{{ user.profile.verification_notes }}
{% endif %}
{% csrf_token %}
Click to upload or drag and drop
Supported formats: JPG, PNG, PDF (Max 5MB)
{% elif user.profile.verification_status == 'pending' %}
Verification in Progress
Your ID proof has been submitted and is awaiting admin review. We'll notify you once the verification is complete.

Submitted on: {{ user.profile.id_proof_uploaded_at|date:"M d, Y H:i" }}
{% elif user.profile.verification_status == 'verified' %}
Account Verified
Your account has been successfully verified on {{ user.profile.verified_at|date:"M d, Y" }}.
{% endif %}