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

Consultant Profile

{{ form.hidden_tag() }}
{{ form.registration_number.label(class="form-label") }} {{ form.registration_number(class="form-control") }} {% if form.registration_number.errors %}
{% for error in form.registration_number.errors %} {{ error }} {% endfor %}
{% endif %}
{{ form.contact_details.label(class="form-label") }} {{ form.contact_details(class="form-control", rows="3") }} {% if form.contact_details.errors %}
{% for error in form.contact_details.errors %} {{ error }} {% endfor %}
{% endif %}
{{ form.logo.label(class="form-label") }} {{ form.logo(class="form-control-file") }} {% if form.logo.errors %}
{% for error in form.logo.errors %} {{ error }} {% endfor %}
{% endif %} Upload a logo for your reports (JPG, PNG, GIF - max 2MB)
{% if current_user.logo_filename %}
Current Logo
{% endif %}
Back to Dashboard
{% endblock %}