gitlab-org--gitlab-foss/app/views/profiles/keys/_form.html.haml
2013-06-24 19:25:10 +03:00

23 lines
613 B
Text

%div
= form_for [:profile, @key] do |f|
- if @key.errors.any?
.alert.alert-error
%ul
- @key.errors.full_messages.each do |msg|
%li= msg
.clearfix
= f.label :title
.input= f.text_field :title
.clearfix
= f.label :key
.input
%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
= f.submit 'Add key', class: "btn btn-create"
= link_to "Cancel", profile_keys_path, class: "btn btn-cancel"