{% extends "base.html" %} {% block title %}Certificate Verification — FORGE Academy{% endblock %} {% block extra_css %} {% endblock %} {% block content %}
{% if result %}
{{ cert_def.icon if cert_def else '🎖️' }}
✓ Valid Certificate
This credential has been verified as authentic.

Recipient
{{ result.display_name }}
Certificate
{{ result.cert_label }}
Role
{{ result.role or '—' }}
Issued
{{ result.issued_at[:10] if result.issued_at else '—' }}
Verification Token
{{ result.token }}
← FORGE Academy
{% else %}
Invalid Token
This certificate token was not found or has been revoked.
← FORGE Academy
{% endif %}
{% endblock %}