{% extends 'default.html' %} {% block title %} API Key {% endblock %} {% block head %} {% endblock %} {% block default_content %}

API Key

The API Key is used inside the SimpleLogin Chrome extension. You can install the extension here .
Please copy and paste the API key below into the browser 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 %}

Delete
{% endfor %}
{{ new_api_key_form.csrf_token }} Name of the api key, e.g. where it will be used. {{ new_api_key_form.name(class="form-control", placeholder="Chrome, Firefox") }} {{ render_field_errors(new_api_key_form.name) }}
{% endblock %} {% block script %} {% endblock %}