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: 15233f70eeea9268fa99e853a8b2c463972a6ba3 (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
.ui-box.width-100p
  %h3= @user.name
  = form_for @user, :url => profile_edit_path, :method => :put do |f|
    .data
      -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
    .buttons
      = f.submit 'Save', :class => "grey-button"