{% extends "base_wizard.html" %} {% block title %}Central - API Keys{% endblock %} {% block content %} {% with step=3, step_name="API Keys" %} {% include "_wizard_header.html" %} {% endwith %}

API Keys

Add API keys for adapters that require external service credentials (e.g., FIRMS).

{% if success %}

{{ success }}

{% endif %} {% if keys %}

Existing Keys

{% for key in keys %} {% endfor %}
Alias Created
{{ key.alias }} {{ key.created_at.strftime('%Y-%m-%d %H:%M') if key.created_at else '(never)' }}
{% else %}

No API keys configured yet.

{% endif %}

Add New Key

{% if errors and errors.alias %} {{ errors.alias }} {% else %} Letters, numbers, and underscores only. {% endif %}
{% if errors and errors.plaintext_key %} {{ errors.plaintext_key }} {% else %} Will be encrypted before storage. {% endif %}

← Back
{% endblock %}