{% extends 'accounts/base_account.html' %} {% load static %} {% block account_content %}
Verify Your Identity
{% if verification.verification_status == 'verified' %}

Identity Verified

Your identity has been successfully verified on {{ verification.verified_at|date:"F j, Y" }}.

Back to Dashboard
{% elif verification.verification_status == 'pending' %}

Verification in Progress

We're currently reviewing your verification documents. This usually takes 1-2 business days. You'll receive an email once your verification is complete.

{% else %}
Why verify your identity?

Verifying your identity helps build trust in our community. We use this information to confirm your identity and keep our platform secure.

{% csrf_token %}
1. Select ID Type
{% if form.id_type.errors %}
{{ form.id_type.errors.0 }}
{% endif %}
2. Enter ID Information
{{ form.id_number }} {% if form.id_number.errors %}
{{ form.id_number.errors.0 }}
{% endif %}
3. Upload Photos
Front of ID

Upload a clear photo of the front of your ID

Back of ID

Upload a clear photo of the back of your ID

{% if form.id_document.errors %}
{{ form.id_document.errors.0 }}
{% endif %}
Accepted formats: JPG, PNG, or PDF (max 5MB). Make sure all text is clearly visible.
Cancel
{% endif %}
{% endblock %} {% block extra_js %} {{ block.super }} {% endblock %}