gitlab-org--gitlab-foss/app/views/profiles/keys/_form.html.haml

24 lines
613 B
Text
Raw Normal View History

2011-10-08 17:36:38 -04:00
%div
= form_for [:profile, @key] do |f|
- if @key.errors.any?
2013-01-30 09:53:18 -05:00
.alert.alert-error
%ul
- @key.errors.full_messages.each do |msg|
%li= msg
2011-10-08 17:36:38 -04:00
.clearfix
2011-10-08 17:36:38 -04:00
= f.label :title
.input= f.text_field :title
.clearfix
2011-10-08 17:36:38 -04:00
= f.label :key
.input
2013-06-24 12:25:10 -04:00
%p.light
Paste your public key here. Read more about how generate it #{link_to "here", help_ssh_path}
= f.text_area :key, class: [:xxlarge, :thin_area]
.actions
2013-06-24 12:25:10 -04:00
= f.submit 'Add key', class: "btn btn-create"
= link_to "Cancel", profile_keys_path, class: "btn btn-cancel"
2011-10-08 17:36:38 -04:00