{% extends 'admin/layout.html.twig' %} {% block title %}Passkeys - KitscoApp{% endblock %} {% block page_title %}Passkey Management{% endblock %} {% block content %}

Your Passkeys

Use Face ID, Touch ID, or a security key to sign in without a password

{% if credentials|length > 0 %} {% for credential in credentials %}
{% if credential.deviceType == 'platform' %} {% else %} {% endif %}

{{ credential.name }}

Added {{ credential.createdAt|date('M j, Y') }} {% if credential.lastUsedAt %} · Last used {{ credential.lastUsedAt|date('M j, Y') }} {% endif %}

{% endfor %} {% else %}

No passkeys registered

Add a passkey to sign in quickly and securely

{% endif %}

About Passkeys

Back to Settings
{% endblock %}