summaryrefslogtreecommitdiff
path: root/app/views/projects/deploy_keys/_form.html.haml
blob: 5ee4aae54eb1caabc6d6ab1d61bda8b55b5c7db4 (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 [@project, @key], url: project_deploy_keys_path 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-lg'
    .form-group
      = f.label :key
      .col-sm-10
        %p.light
          Paste a machine public key here. Read more about how to generate it
          = link_to "here", help_ssh_path
        = f.text_area :key, class: "input-lg thin_area"

    .form-actions
      = f.submit 'Create', class: "btn-create btn"
      = link_to "Cancel", project_deploy_keys_path(@project), class: "btn btn-cancel"