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

24 lines
722 B
Text
Raw Normal View History

2011-12-29 14:44:16 -05:00
%div
= form_for [@project, @key], url: project_deploy_keys_path do |f|
2011-12-29 14:44:16 -05:00
-if @key.errors.any?
2013-01-30 09:53:18 -05:00
.alert.alert-error
2012-01-28 05:40:17 -05:00
%ul
- @key.errors.full_messages.each do |msg|
%li= msg
.control-group
2012-01-28 05:40:17 -05:00
= f.label :title
2013-08-08 04:57:34 -04:00
.controls= f.text_field :title, class: 'input-xlarge'
.control-group
2012-01-28 05:40:17 -05:00
= f.label :key
.controls
2013-08-08 04:57:34 -04:00
%p.light
Paste a machine public key here. Read more about how to generate it
= link_to "here", help_ssh_path
2013-08-08 04:57:34 -04:00
= f.text_area :key, class: "input-xxlarge thin_area"
2013-08-07 16:35:24 -04:00
.form-actions
2013-05-06 08:10:55 -04:00
= f.submit 'Create', class: "btn-create btn"
2013-01-29 15:18:19 -05:00
= link_to "Cancel", project_deploy_keys_path(@project), class: "btn btn-cancel"
2011-12-29 14:44:16 -05:00