summaryrefslogtreecommitdiff
path: root/app/views/profiles/keys/_form.html.haml
blob: 2a8800de60e78888b069e8b9b74d5d6e29735534 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
%div
  = form_for [:profile, @key], html: { class: 'form-horizontal js-requires-input' } do |f|
    - if @key.errors.any?
      .alert.alert-danger
        %ul
          - @key.errors.full_messages.each do |msg|
            %li= msg

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

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