summaryrefslogtreecommitdiff
path: root/app/views/admin/deploy_keys/new.html.haml
blob: d052df27bf17d71376f353b3c6325af5b7d93597 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
- page_title "新部署密钥"
%h3.page-title 新的公开的部署密钥
%hr

%div
  = form_for [:admin, @deploy_key], html: { class: 'deploy-key-form form-horizontal' } do |f|
    -if @deploy_key.errors.any?
      .alert.alert-danger
        %ul
          - @deploy_key.errors.full_messages.each do |msg|
            %li= msg

    .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
          在这里粘贴机器公钥。如何生成密钥请点击
          = link_to "这里", help_page_path("ssh", "README")
        = f.text_area :key, class: "form-control thin_area", rows: 5

    .form-actions
      = f.submit '创建', class: "btn-create btn"
      = link_to "取消", admin_deploy_keys_path, class: "btn btn-cancel"