diff options
author | Patricio Cano <patricio@gitlab.com> | 2014-10-28 11:04:46 -0500 |
---|---|---|
committer | Patricio Cano <patricio@gitlab.com> | 2014-10-28 11:04:46 -0500 |
commit | bf07fcf06ad7a5d2fd5f25079ce9e16d003481c7 (patch) | |
tree | cc56b26c48196fe15cfad3dad41369e0bb350d25 /app/views | |
parent | 9397d19380aa4f63c9f8b67bf06b9d9ca3db3c1a (diff) | |
download | gitlab-ce-bf07fcf06ad7a5d2fd5f25079ce9e16d003481c7.tar.gz |
Removed unnecessary role in form.
Diffstat (limited to 'app/views')
-rw-r--r-- | app/views/devise/registrations/new.html.haml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/devise/registrations/new.html.haml b/app/views/devise/registrations/new.html.haml index 806d206d7b9..123de881f59 100644 --- a/app/views/devise/registrations/new.html.haml +++ b/app/views/devise/registrations/new.html.haml @@ -2,7 +2,7 @@ .login-heading %h3 Sign up .login-body - = form_for(resource, as: resource_name, url: registration_path(resource_name), role: 'form') do |f| + = form_for(resource, as: resource_name, url: registration_path(resource_name)) do |f| .devise-errors = devise_error_messages! %div |