Welcome to mirror list, hosted at ThFree Co, Russian Federation.

show.html.haml « profile « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8ebb4dcb713a822a7be8881015d718eeb03f3f62 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
.ui-box.width-100p
  %h3= @user.name
  = form_for @user, :url => profile_update_path, :method => :put do |f|
    .data
      .left
        -if @user.errors.any?
          #error_explanation
            %ul
              - @user.errors.full_messages.each do |msg|
                %li= msg

        .form-row
          = f.label :name
          %br
          = f.text_field :name
        .form-row
          = f.label :email
          %br
          = f.text_field :email
        .form-row
          = f.label :skype
          %br
          = f.text_field :skype
        .form-row
          = f.label :linkedin
          %br
          = f.text_field :linkedin
        .form-row
          = f.label :twitter
          %br
          = f.text_field :twitter

      .right
        = image_tag gravatar_icon(current_user.email,64), :width => 64, :style => "margin:5px; border:5px solid #eee;"
      .clear
    .buttons
      = f.submit 'Save', :class => "grey-button"