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

24 lines
692 B
Plaintext
Raw Normal View History

2011-12-29 19:44:16 +00:00
%div
= form_for [@project, @key], url: project_deploy_keys_path do |f|
2011-12-29 19:44:16 +00:00
-if @key.errors.any?
2013-01-30 14:53:18 +00:00
.alert.alert-error
2012-01-28 10:40:17 +00:00
%ul
- @key.errors.full_messages.each do |msg|
%li= msg
.control-group
2012-01-28 10:40:17 +00:00
= f.label :title
.controls= f.text_field :title
.control-group
2012-01-28 10:40:17 +00:00
= f.label :key
.controls
= f.text_area :key, class: [:xxlarge, :thin_area]
%p.hint
Paste a machine public key here. Read more about how generate it
= link_to "here", help_ssh_path
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