{% extends "base.html" %} {% block title %}Identity{% endblock %} {% block content %}

Identity

Pseudonymous identity with cryptographic proof of authorship

{% if identity %}
Identity Details
Alias
{{ identity.alias }}
Created
{{ identity.created_at }}
Public ID
{{ identity.public_id }}
Contributions
{{ identity.contributions }}
Verification Status
{% if identity.real_identity %}
Verified Name
{{ identity.real_identity.name }}
Method
{{ identity.real_identity.method }} {{ identity.real_identity.trust_level }}
Verified Email
{{ identity.real_identity.email }}
Verified At
{{ identity.real_identity.verified_at }}

All {{ chain_length }} chain entries are attributed to this verified identity. The unbroken hash chain proves continuous authorship.

{% else %}

Not Yet Verified

Your identity is pseudonymous. All work is signed by your public ID.

Verify with: charter verify start

{% endif %}
Hash Chain Summary
Chain Length
{{ chain_length }}
Integrity
{% if chain_intact %} Verified {% else %} Broken {% endif %}
Signing
HMAC-SHA256
{% else %}

No identity created yet.

Run charter init to create your governance identity.

{% endif %} {% endblock %}