{% extends "base.html" %} {% load static %} {% load humanize %} {% block title %}Request Withdrawal - IHICL Investment{% endblock %} {% block content %}

Request a Withdrawal

Withdrawal Details
{% if messages %} {% for message in messages %} {% endfor %} {% endif %}
Your Information

Name: {{ investor_profile.get_full_title }} {{ user.first_name }} {{ user.last_name }}

Email: {{ user.email }}

Phone: {{ investor_profile.telephone }}

{% csrf_token %}
{{ form.amount }} {% if form.amount.errors %}
{{ form.amount.errors }}
{% endif %}
Minimum withdrawal: ₦10,000
{{ form.terms }} {% if form.terms.errors %}
{{ form.terms.errors }}
{% endif %}
Cancel
{% endblock %}