mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-26 04:56:16 +10:00
24 lines
683 B
Plaintext
24 lines
683 B
Plaintext
%div
|
|
= form_for [:profile, @key] do |f|
|
|
- if @key.errors.any?
|
|
.alert.alert-error
|
|
%ul
|
|
- @key.errors.full_messages.each do |msg|
|
|
%li= msg
|
|
|
|
.control-group
|
|
= f.label :title
|
|
.controls= f.text_field :title, class: "input-xlarge"
|
|
.control-group
|
|
= f.label :key
|
|
.controls
|
|
%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}.
|
|
= f.text_area :key, class: "input-xxlarge thin_area"
|
|
|
|
|
|
.form-actions
|
|
= f.submit 'Add key', class: "btn btn-create"
|
|
= link_to "Cancel", profile_keys_path, class: "btn btn-cancel"
|
|
|