summaryrefslogtreecommitdiff
path: root/app/views/settings/keys/_form.html.haml
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/settings/keys/_form.html.haml')
-rw-r--r--app/views/settings/keys/_form.html.haml22
1 files changed, 22 insertions, 0 deletions
diff --git a/app/views/settings/keys/_form.html.haml b/app/views/settings/keys/_form.html.haml
new file mode 100644
index 00000000000..63ef5eaa172
--- /dev/null
+++ b/app/views/settings/keys/_form.html.haml
@@ -0,0 +1,22 @@
+%div
+ = form_for [:profile, @key], html: { class: 'js-requires-input' } do |f|
+ = form_errors(@key)
+
+ .form-group
+ = f.label :key, s_('Profiles|Key'), class: 'label-bold'
+ %p= _("Paste your public SSH key, which is usually contained in the file '~/.ssh/id_ed25519.pub' or '~/.ssh/id_rsa.pub' and begins with 'ssh-ed25519' or 'ssh-rsa'. Don't use your private SSH key.")
+ = f.text_area :key, class: "form-control js-add-ssh-key-validation-input qa-key-public-key-field", rows: 8, required: true, placeholder: s_('Profiles|Typically starts with "ssh-ed25519 …" or "ssh-rsa …"')
+ .form-group
+ = f.label :title, _('Title'), class: 'label-bold'
+ = f.text_field :title, class: "form-control input-lg qa-key-title-field", required: true, placeholder: s_('Profiles|e.g. My MacBook key')
+ %p.form-text.text-muted= _('Name your individual key via a title')
+
+ .js-add-ssh-key-validation-warning.hide
+ .bs-callout.bs-callout-warning{ role: 'alert', aria_live: 'assertive' }
+ %strong= _('Oops, are you sure?')
+ %p= s_("Profiles|This doesn't look like a public SSH key, are you sure you want to add it?")
+
+ %button.btn.btn-success.js-add-ssh-key-validation-confirm-submit= _("Yes, add it")
+
+ .prepend-top-default
+ = f.submit s_('Profiles|Add key'), class: "btn btn-success js-add-ssh-key-validation-original-submit qa-add-key-button"