summaryrefslogtreecommitdiff
path: root/app/views/profiles/keys/_form.html.haml
blob: 671fd0dfd4ee4d78d5ea58b1fe32a02e92d38815 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
%div
  = form_for [:profile, @key] do |f|
    - if @key.errors.any?
      .alert.alert-error
        %ul
          - @key.errors.full_messages.each do |msg|
            %li= msg

    .form-group
      = f.label :title
      .col-sm-10= f.text_field :title, class: "input-xlarge"
    .form-group
      = f.label :key
      .col-sm-10
        %p.light
          Paste your public key here. Read more about how to generate a key on #{link_to "the SSH help page", help_ssh_path}.
        = f.text_area :key, class: "input-xxlarge thin_area"


    .form-actions
      = f.submit 'Add key', class: "btn btn-create"
      = link_to "Cancel", profile_keys_path, class: "btn btn-cancel"