{% extends "layouts/base.html" %} {% block title %} Add your SSH key ~ ATR {% endblock title %} {% block description %} Add your SSH public key to your account. {% endblock description %} {% block content %}

← Back to Manage keys

Add your SSH key

Add your SSH public key to use for rsync authentication.

Welcome, {{ asf_id }}! You are authenticated as an ASF committer.

{% if form.errors %}

Form errors

{% for field, errors in form.errors.items() %} {% for error in errors %}

{{ field }}: {{ error }}

{% endfor %} {% endfor %}
{% endif %}
{{ form.csrf_token }}
{{ form.key(class="form-control mb-2", rows=4, placeholder="Paste your SSH public key here (in the format used in authorized_keys files)", aria_describedby="key-help") }} Your SSH public key should be in the standard format, starting with a key type (like "ssh-rsa" or "ssh-ed25519") followed by the key data.
{{ form.submit(class="btn btn-primary") }}
{% endblock content %}