API Keys
API keys are used by the SimpleLogin browser extensions or mobile apps.
️API Keys should be kept secret and treated like passwords, they can be used to gain access to your account.
{% for api_key in api_keys %}
{{ api_key.name or "N/A" }}
{% if api_key.last_used %}
Last used: {{ api_key.last_used | dt }}
Used: {{ api_key.times }} times.
{% else %}
Never used
{% endif %}
{% endfor %}
{% if api_keys|length > 0 %}
{% endif %}