gitlab-org--gitlab-foss/app/views/projects/deploy_keys/_form.html.haml

24 lines
845 B
Plaintext
Raw Normal View History

2011-12-29 19:44:16 +00:00
%div
= form_for [@project, @key], url: project_deploy_keys_path, html: { class: 'deploy-key-form form-horizontal' } do |f|
2011-12-29 19:44:16 +00:00
-if @key.errors.any?
.alert.alert-danger
2012-01-28 10:40:17 +00:00
%ul
- @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
2013-08-08 08:57:34 +00:00
%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
2013-08-07 20:35:24 +00:00
.form-actions
2013-05-06 12:10:55 +00:00
= f.submit 'Create', class: "btn-create btn"
2013-01-29 20:18:19 +00:00
= link_to "Cancel", project_deploy_keys_path(@project), class: "btn btn-cancel"
2011-12-29 19:44:16 +00:00