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

    .form-group
      = f.label :key, class: 'label-light'
      = f.text_area :key, class: "form-control", rows: 8, required: true
    .form-group
      = f.label :title, class: 'label-light'
      = f.text_field :title, class: "form-control", required: true

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