summaryrefslogtreecommitdiff
path: root/app/views/profiles/keys/_form.html.haml
blob: c14700794ceee4ca13f376e9cc7ba409370d6333 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
%div
  = form_for [:profile, @key], html: { class: 'js-requires-input' } do |f|
    = form_errors(@key)

    .form-group
      = f.label :key, class: 'label-light'
      %p= _("Paste your public SSH key, which is usually contained in the file '~/.ssh/id_rsa.pub' and begins with 'ssh-rsa'. Don't use your private SSH key.")
      = f.text_area :key, class: "form-control", rows: 8, required: true, placeholder: 'Typically starts with "ssh-rsa …"'
    .form-group
      = f.label :title, class: 'label-light'
      = f.text_field :title, class: "form-control", required: true, placeholder: 'e.g. My MacBook key'
      %p.form-text.text-muted= _('Name your individual key via a title')

    .prepend-top-default
      = f.submit 'Add key', class: "btn btn-create"