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

24 lines
683 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
.control-group
2011-10-08 17:36:38 -04:00
= f.label :title
2013-08-08 04:57:34 -04:00
.controls= f.text_field :title, class: "input-xlarge"
.control-group
2011-10-08 17:36:38 -04:00
= f.label :key
.controls
2013-06-24 12:25:10 -04:00
%p.light
Paste your public key here. Read more about how to generate a key on #{link_to "the SSH help page", help_ssh_path}.
2013-08-08 04:57:34 -04:00
= f.text_area :key, class: "input-xxlarge thin_area"
2013-08-07 16:35:24 -04:00
.form-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