{% extends "base.html" %} {% load static %} {% block title %}Review Your Application - Career Portal{% endblock %} {% block content %}

Review Your Application Details

Please review the information extracted from your resume and the data you provided. Make any necessary corrections before submitting.

{% if form.errors %}
Please correct the errors below:
{% endif %}
{% csrf_token %} {{ form.tags_edit.as_hidden }}

Personal Information

{{ form.full_name.label_tag }} {{ form.full_name }} {% if form.full_name.errors %}
{{ form.full_name.errors }}
{% endif %} {% if form.full_name.help_text %}{{ form.full_name.help_text }}{% endif %} {{ form.email.label_tag }} {{ form.email }} {% if form.email.errors %}
{{ form.email.errors }}
{% endif %} {% if form.email.help_text %}{{ form.email.help_text }}{% endif %} {{ form.phone_number.label_tag }} {{ form.phone_number }} {% if form.phone_number.errors %}
{{ form.phone_number.errors }}
{% endif %} {% if form.phone_number.help_text %}{{ form.phone_number.help_text }}{% endif %} {{ form.linkedin_profile.label_tag }} {{ form.linkedin_profile }} {% if form.linkedin_profile.errors %}
{{ form.linkedin_profile.errors }}
{% endif %} {% if form.linkedin_profile.help_text %}{{ form.linkedin_profile.help_text }}{% endif %}

Latest Work Experience

{{ form.current_title.label_tag }} {{ form.current_title }} {% if form.current_title.errors %}
{{ form.current_title.errors }}
{% endif %} {{ form.latest_work_organization.label_tag }} {{ form.latest_work_organization }} {% if form.latest_work_organization.errors %}
{{ form.latest_work_organization.errors }}
{% endif %}

Latest Education

{{ form.latest_degree.label_tag }} {{ form.latest_degree }} {% if form.latest_degree.errors %}
{{ form.latest_degree.errors }}
{% endif %} {{ form.school.label_tag }} {{ form.school }} {% if form.school.errors %}
{{ form.school.errors }}
{% endif %} {{ form.major.label_tag }} {{ form.major }} {% if form.major.errors %}
{{ form.major.errors }}
{% endif %} {{ form.graduate_year.label_tag }} {{ form.graduate_year }} {% if form.graduate_year.errors %}
{{ form.graduate_year.errors }}
{% endif %} {% if is_new_user %}

Create Your Account

An account will be created for you with the email address provided. Please set a password.

{{ form.password }} {% if form.password.errors %}
{{ form.password.errors|join:", " }}
{% endif %}
{{ form.password_confirmation }} {% if form.password_confirmation.errors %}
{{ form.password_confirmation.errors|join:", " }}
{% endif %}
{% else %}

To confirm your identity and submit the application for your existing account ({{ form.initial.email|default:"your email" }}), please enter your current password.

{{ form.password }} {% if form.password.errors %}
{{ form.password.errors|join:", " }}
{% endif %}

Forgot Password?

{# No password_confirmation field for existing user #} {% endif %} Cancel
{% endblock %}