summaryrefslogtreecommitdiff
path: root/app/views/admin/deploy_keys/new.html.haml
blob: 13f5259698f13e9643ba07043c0542a435277f7d (plain)
1
2
3
4
5
6
7
8
9
10
- 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|
    = render partial: 'shared/deploy_keys/form', locals: { form: f, deploy_key: @deploy_key }
    .form-actions
      = f.submit 'Create', class: 'btn-create btn'
      = link_to 'Cancel', admin_deploy_keys_path, class: 'btn btn-cancel'