{% extends 'default.html' %}
{% block title %}
API Key
{% endblock %}
{% set active_page = "api_key" %}
{% block head %}
{% endblock %}
{% block default_content %}
API Key
The API Key is used on the SimpleLogin Chrome/Firefox/Safari extension.
You can install the Chrome extension on
Chrome Store,
Firefox add-on on Firefox
and Safari extension on AppStore
Please copy and paste the API key below into the extension to get started.
⚠️Your API Keys are secret and should be treated as passwords.
{% for api_key in api_keys %}
{{ api_key.name }}
{% if api_key.last_used %}
Last used: {{ api_key.last_used | dt }}
Used: {{ api_key.times }} times.
{% else %}
Never used
{% endif %}