{% extends "base.html" %} {% comment %} # SPDX-License-Identifier: AGPL-3.0-or-later {% endcomment %} {% load static %} {% load i18n %} {% load extras %} {% block page_js %} {% endblock %} {% block page_head %} {% endblock %} {% block content %}
{% trans "Browser does not support passkeys." %}

{% trans "Passkeys" %}

{% blocktrans trimmed %} Passkeys are way to verify user's identity using digital signatures. They are a more secure alternative to passwords. Secret information is kept with the user on their phone, laptop, or a hardware token and unlocked using a PIN, fingerprint, or face ID. No secrets are stored on the server. The server knows only the public information that can used to verify user's signatures. {% endblocktrans %}

{% trans 'Learn more...' %}

{% csrf_token %} {% icon "plus" %} {% trans 'Add passkey' %}

{% if object_list %}
{% for passkey in object_list %} {% endfor %}
{% trans "Name" %} {% trans "For Domain" %} {% trans "Added" %} {% trans "Last Used" %} {% trans "Actions" %}
{{ passkey.name }} {{ passkey.domain }} {{ passkey.created_time }} {{ passkey.last_used_time }} {% icon "pencil-square-o" %}
{% csrf_token %}
{% else %}

{% trans "No passkeys added to user account." %} {% endif %}

{% endblock %}