2014-09-02 18:07:02 +05:30
|
|
|
%div
|
2015-12-23 02:04:40 +05:30
|
|
|
= form_for [@project.namespace.becomes(Namespace), @project, @key], url: namespace_project_deploy_keys_path, html: { class: 'deploy-key-form form-horizontal js-requires-input' } do |f|
|
2014-09-02 18:07:02 +05:30
|
|
|
-if @key.errors.any?
|
|
|
|
.alert.alert-danger
|
|
|
|
%ul
|
|
|
|
- @key.errors.full_messages.each do |msg|
|
|
|
|
%li= msg
|
|
|
|
|
|
|
|
.form-group
|
|
|
|
= f.label :title, class: "control-label"
|
2015-12-23 02:04:40 +05:30
|
|
|
.col-sm-10= f.text_field :title, class: 'form-control', autofocus: true, required: true
|
2014-09-02 18:07:02 +05:30
|
|
|
.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")
|
2015-12-23 02:04:40 +05:30
|
|
|
= f.text_area :key, class: "form-control thin_area", rows: 5, required: true
|
2014-09-02 18:07:02 +05:30
|
|
|
|
|
|
|
.form-actions
|
2015-12-23 02:04:40 +05:30
|
|
|
= f.submit 'Create Deploy Key', class: "btn-create btn"
|
2015-04-26 12:48:37 +05:30
|
|
|
= link_to "Cancel", namespace_project_deploy_keys_path(@project.namespace, @project), class: "btn btn-cancel"
|