Add services and SSH keys.
[cas.git] / src / ssh_keys / templates / ssh_keys / sshkey_add.html
diff --git a/src/ssh_keys/templates/ssh_keys/sshkey_add.html b/src/ssh_keys/templates/ssh_keys/sshkey_add.html
new file mode 100644 (file)
index 0000000..1b67d03
--- /dev/null
@@ -0,0 +1,15 @@
+{% extends 'ssh_keys/base.html' %}
+{% load i18n %}
+
+
+{% block accounts-content %}
+<h1>{% trans "Add SSH key" %}</h1>
+
+<form method='post'>
+  {% csrf_token %}
+  {{ form.as_p }}
+  <button type='submit'>
+    {% trans "Add" %}
+  </button>
+</form>
+{% endblock %}