summaryrefslogtreecommitdiff
path: root/app/views/admin/deploy_keys/new.html.haml
blob: 15aa059c93d0b5f82a329537e92a02d7189fd452 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
- page_title "New Deploy Key"
%h3.page-title New public deploy key
%hr

%div
  = form_for [:admin, @deploy_key], html: { class: 'deploy-key-form form-horizontal' } do |f|
    = form_errors(@deploy_key)

    .form-group
      = f.label :title, class: "control-label"
      .col-sm-10= f.text_field :title, class: 'form-control'
    .form-group
      = f.label :key, class: "control-label"
      .col-sm-10
        %p.light
          Paste a machine public key here. Read more about how to generate it
          = link_to "here", help_page_path("ssh", "README")
        = f.text_area :key, class: "form-control thin_area", rows: 5

    .form-actions
      = f.submit 'Create', class: "btn-create btn"
      = link_to "Cancel", admin_deploy_keys_path, class: "btn btn-cancel"