{% 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 %}
{% 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 %}
{% csrf_token %} {% icon "plus" %} {% trans 'Add passkey' %}
{% if object_list %}| {% trans "Name" %} | {% trans "For Domain" %} | {% trans "Added" %} | {% trans "Last Used" %} | {% trans "Actions" %} | {% for passkey in object_list %}
|---|---|---|---|---|
| {{ passkey.name }} | {{ passkey.domain }} | {{ passkey.created_time }} | {{ passkey.last_used_time }} | {% icon "pencil-square-o" %} |
{% trans "No passkeys added to user account." %} {% endif %}