{% extends "base.html" %} {% block title %}Profile Setup — FORGE Academy{% endblock %} {% block extra_css %} {% endblock %} {% block content %}

Operator Profile

Configure your role, training track, and AI maturity level. This shapes your entire mission path.

{% if fa_user %}

Current Status

{{ fa_user.xp|default(0) }} XP
Total Earned
{% if level_ctx and level_ctx.level %}
{{ level_ctx.level.icon }} {{ level_ctx.level.label }}
Current Rank
{% endif %}
{% if fa_user.role %}{{ roles.get(fa_user.role, {}).get('label', fa_user.role) }}{% else %}Not Set{% endif %}
Role Track
← Back to Hub
{% endif %}
✓ Profile configured. Redirecting to your mission hub...

Identity

Mission Track — Choose Your Role

Technical roles get CodeMirror coding labs. Guided roles get form-based AI configuration missions. Both paths deploy real AI.

{% for role_id, role in roles.items() %}
{{ role.icon }}
{{ role.label }}
{{ role.type }}
{% endfor %}

AI Maturity Assessment

{% endblock %}