2011-10-08 23:36:38 +02:00
|
|
|
%div
|
2012-01-29 22:59:12 +01:00
|
|
|
= 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
|
2012-01-29 22:59:12 +01:00
|
|
|
%ul
|
|
|
|
- @key.errors.full_messages.each do |msg|
|
|
|
|
%li= msg
|
2011-10-08 23:36:38 +02:00
|
|
|
|
2012-01-29 22:59:12 +01:00
|
|
|
.clearfix
|
2011-10-08 23:36:38 +02:00
|
|
|
= f.label :title
|
2012-01-29 22:59:12 +01:00
|
|
|
.input= f.text_field :title
|
|
|
|
.clearfix
|
2011-10-08 23:36:38 +02:00
|
|
|
= f.label :key
|
2012-08-22 02:56:53 +02:00
|
|
|
.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
|
|
|
|
|
|
|
|
|
2012-01-29 22:59:12 +01:00
|
|
|
.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
|
|
|
|