Add services and SSH keys.
[cas.git] / src / ssh_keys / templates / ssh_keys / sshkey_add.html
1 {% extends 'ssh_keys/base.html' %}
2 {% load i18n %}
3
4
5 {% block accounts-content %}
6 <h1>{% trans "Add SSH key" %}</h1>
7
8 <form method='post'>
9   {% csrf_token %}
10   {{ form.as_p }}
11   <button type='submit'>
12     {% trans "Add" %}
13   </button>
14 </form>
15 {% endblock %}