{% extends 'base.html' %} {% block title %}SSH Public Keys{% endblock %} {% block content %}

SSH PUBLIC KEYS

{% if has_ssh_public_keys %}
{% endif %} {% for ssh_public_key in ssh_public_keys %}
{{ ssh_public_key['name'] }} {{ ssh_public_key['content'] }}
{% endfor %} {% if has_ssh_public_keys %}
{% endif %}

UPLOAD A NEW SSH PUBLIC KEY

(defaults to key comment)

Paste the contents of your SSH public key file here. ( Something like ~/.ssh/id_rsa.pub )

The contents of this file should look similar to ssh-rsa AAAAC3NzaC1l...Yqv== me@my-computer

If you wish, you can generate a new SSH key pair using the ssh-keygen utility.

{% endblock %} {% block pagesource %}/templates/ssh-public-keys.html{% endblock %}