gitlabhq/app/views/keys/_form.html.haml

25 lines
595 B
Plaintext
Raw Normal View History

2011-10-08 23:36:38 +02:00
%div
= form_for @key do |f|
2011-10-08 23:36:38 +02:00
-if @key.errors.any?
2013-01-30 15:53:18 +01:00
.alert.alert-error
%ul
- @key.errors.full_messages.each do |msg|
%li= msg
2011-10-08 23:36:38 +02:00
.clearfix
2011-10-08 23:36:38 +02:00
= f.label :title
.input= f.text_field :title
.clearfix
2011-10-08 23:36:38 +02:00
= f.label :key
.input
= f.text_area :key, class: [:xxlarge, :thin_area]
%p.hint
Paste your public key here. Read more about how generate it
= link_to "here", help_ssh_path
.actions
2013-01-29 21:18:19 +01:00
= f.submit 'Save', class: "btn btn-save"
= link_to "Cancel", keys_path, class: "btn btn-cancel"
2011-10-08 23:36:38 +02:00