diff options
author | Robert Speicher <rspeicher@gmail.com> | 2017-01-04 11:32:39 -0500 |
---|---|---|
committer | Robert Speicher <rspeicher@gmail.com> | 2017-01-04 11:32:39 -0500 |
commit | b846b9df5982a21961007e4f29888108a41c47e3 (patch) | |
tree | 533c6f0a66779520c533f25ecf6c4bb097019517 | |
parent | ec4fe4432a2c4daa14c8e8f7c5d8567553062ebf (diff) | |
download | gitlab-ce-b846b9df5982a21961007e4f29888108a41c47e3.tar.gz |
Fix ImplicitDiv Haml lint failure
-rw-r--r-- | app/views/devise/shared/_signup_box.html.haml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/devise/shared/_signup_box.html.haml b/app/views/devise/shared/_signup_box.html.haml index 681eb303b49..01ecf237925 100644 --- a/app/views/devise/shared/_signup_box.html.haml +++ b/app/views/devise/shared/_signup_box.html.haml @@ -15,7 +15,7 @@ .form-group = f.label :email = f.email_field :email, class: "form-control middle", required: true, title: "Please provide a valid email address." - %div.form-group + .form-group = f.label :email_confirmation = f.email_field :email_confirmation, class: "form-control middle", required: true, title: "Please retype the email address." .form-group.append-bottom-20#password-strength |