{% extends "base.html" %} {% load i18n %} {% block title %}{% trans "Company Access Required" %}{% endblock %} {% block content %}
{% csrf_token %}

{% trans "Company Access Required" %}

{% blocktrans with user=user.first_name|default:user.email %} Welcome {{ user }}! To access ERICA, you need to be linked to a company. {% endblocktrans %}

{% trans "You're Not Yet Linked to a Company" %}

{% trans "ERICA is a comprehensive business management platform designed to work within companies. To access the system, you must be associated with a company account." %}

{% trans "Your administrator needs to add you to the company workspace, or you can contact our support team to create a new company account." %}
{% trans "Contact Your Admin" %}
{% trans "If you've just been hired, ask your company administrator to add you to the ERICA workspace." %}
{% trans "Create New Company" %}
{% trans "If you're a business owner, contact our support team to create a new company account and get started." %}
{% trans "Get Support" %}
{% trans "Our dedicated support team is available 24/7 to help you with setup and integration." %}
{% trans "What You'll Get With ERICA" %}
{% for feature in features %}
{{ feature.title }}
{{ feature.description }}
{% endfor %}
{% trans "Need Help?" %}

{% trans "Contact our support team to get added to a company or to create a new one." %}

support@erica.com
{% trans "What's Next?" %}

{% trans "Logged in as:" %} {{ user.email }}

{% trans "This is a protected environment. Only authorized users can access the system." %}

{% endblock %}