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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-12-31 03:27:02 +0400
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-12-31 03:27:02 +0400
commit16eb3ac360df60469cc9b1a93870c0273c7fe78f (patch)
tree9aff8fff986e9868b1500001d00968f469f73067 /app/views/profiles/passwords/new.html.haml
parent2ecf83191d4ae7a158d70f8cfa11ec9f2744b0ce (diff)
Update form classes
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
Diffstat (limited to 'app/views/profiles/passwords/new.html.haml')
-rw-r--r--app/views/profiles/passwords/new.html.haml12
1 files changed, 6 insertions, 6 deletions
diff --git a/app/views/profiles/passwords/new.html.haml b/app/views/profiles/passwords/new.html.haml
index a4e7dadd16a..fc2c85df9b9 100644
--- a/app/views/profiles/passwords/new.html.haml
+++ b/app/views/profiles/passwords/new.html.haml
@@ -10,13 +10,13 @@
- @user.errors.full_messages.each do |msg|
%li= msg
- .control-group
+ .form-group
= f.label :password
- .controls= f.password_field :password, required: true
- .control-group
+ .col-sm-10= f.password_field :password, required: true
+ .form-group
= f.label :password_confirmation
- .controls
+ .col-sm-10
= f.password_field :password_confirmation, required: true
- .control-group
- .controls
+ .form-group
+ .col-sm-10
= f.submit 'Set new password', class: "btn btn-create"