Workforce
How It Works
Pricing
About
Contact
{% if current_user.is_authenticated %} {% if current_user.role == 'admin' %}
Dashboard
{% elif current_user.role == 'employer' %}
Dashboard
{% elif current_user.role == 'job_seeker' %}
Dashboard
{% endif %} {% endif %}
{% if current_user.is_authenticated and current_user.role in ['employer', 'admin'] %}
Post a job ›
{% endif %}
{% if current_user.is_authenticated %}
{{ current_user.full_name }}
Logout
{% else %}
Log in
Register
{% endif %}
{% with messages = get_flashed_messages(with_categories=true) %} {% if messages %} {% for category, message in messages %}
{{ message }}
{% endfor %} {% endif %} {% endwith %} {% block content %}{% endblock %}
{% block scripts %}{% endblock %}