index.html.haml 536 Bytes
Newer Older
1
%h3.page-title
2
  SSH Keys
3
  = link_to "Add SSH Key", new_profile_key_path, class: "btn pull-right btn-primary"
4

5 6
%br
%p.light
7
  SSH key allows you to establish a secure connection between your computer and GitLab
8 9 10
%p.light
  Before you can add ssh key you need to
  = link_to "generate it", help_ssh_path
randx's avatar
randx committed
11

gitlabhq's avatar
gitlabhq committed
12

13 14 15 16 17 18 19 20 21 22 23

.ui-box
  %h5.title
    SSH Keys (#{@keys.count})
    .pull-right
  %ul.well-list#keys-table
    = render @keys
    - if @keys.blank?
      %li
        %h3.nothing_here_message There are no SSH keys with access to your account.

24