{% extends "base.html" %} {% block title %}Profiles{% endblock %} {% block content %}
Identities on this machine

Profiles

Each profile is an isolated enrollment with its own certificate and config. Use distinct profiles when you need more than one identity on the same workstation — e.g. a personal bot and a work bot, or a staging and production pair.

{% if profiles %}
{% for p in profiles %}
{{ p.name }} {% if p.name == active_profile %} Active {% endif %}
{{ p.path }} {% if p.enrolled %} enrolled {% else %} not yet enrolled {% endif %}
{% endfor %}
{% else %}

No profiles found. Pick a name below to create your first one.

{% endif %}
Add a new profile

Create another identity

Pick a name (letters, digits, dashes or underscores — up to 63 chars). The connector doesn't switch profiles at runtime, so after creating one you'll relaunch with --profile <name> to enrol it. The snippet below already has everything filled in.

{% endblock %}