{% extends 'portal_base.html' %} {% load static i18n %} {% block title %}{% trans "Agency Portal Login" %} - {{ block.super }}{% endblock %} {% block content %}

{% trans "Agency Portal" %}

{% trans "Submit candidates for job assignments" %}

{% csrf_token %}
{% if form.token.errors %}
{% for error in form.token.errors %}{{ error }}{% endfor %}
{% endif %}

{% trans "Enter the access token provided by the hiring organization" %}

{% if form.password.errors %}
{% for error in form.password.errors %}{{ error }}{% endfor %}
{% endif %}

{% trans "Enter the password for this access token" %}

{% trans "Need Help?" %}
{% trans "Contact Support" %}

{% trans "Reach out to your hiring contact" %}

{% trans "Documentation" %}

{% trans "View user guides and tutorials" %}

{% trans "Security Notice" %}

{% trans "This portal is for authorized agency partners only. Access is monitored and logged." %}


{% trans "If you believe you've received this link in error, please contact the hiring organization immediately." %}

{% endblock %} {% block customJS %} {% endblock %}