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

Username: {{ user.username }}

Role: {{ role }}

{% if role == 'Job Seeker' %}
Job Seeker Information

Contact Email: {{ user.email }}

Resume: {{ resume }}

Skills: {{ skills }}

{% csrf_token %}
{% elif role == 'Employer' %}
Employer Information

Business Name: {{ business_name }}

Business Type: {{ business_type }}

Business Category: {{ business_category }}

Location: {{ location }}

Region: {{ region }}

Business Email: {{ user.email }}

Job Offered: {{ fields_for_jobs }}

Status: {{ status }}

{% else %}

No additional information available.

{% endif %} {% if user.user_type == "job_seeker" %} Edit Profile {% elif user.user_type == "employer" %} Edit Profile {% endif %}

You are already logged in.

Logout
{% csrf_token %}
{% endblock content %}