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:
authorBryce Johnson <bryce@gitlab.com>2016-09-29 12:58:43 +0300
committerBryce Johnson <bryce@gitlab.com>2016-10-15 09:28:53 +0300
commitc2766614ddc04b8df54fe8649d1dbe516f532987 (patch)
tree83fa10cc3acf478d026b60de04fa6d8005d3682d /app/views/devise/sessions/_new_crowd.html.haml
parent445711675ca198660dcaee014cd4229b8eb266ab (diff)
Fix syntax error -- missing comma in _new_crowd.
Diffstat (limited to 'app/views/devise/sessions/_new_crowd.html.haml')
-rw-r--r--app/views/devise/sessions/_new_crowd.html.haml2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/devise/sessions/_new_crowd.html.haml b/app/views/devise/sessions/_new_crowd.html.haml
index 5a192c63c7c..e82a08cdb0c 100644
--- a/app/views/devise/sessions/_new_crowd.html.haml
+++ b/app/views/devise/sessions/_new_crowd.html.haml
@@ -1,4 +1,4 @@
-= form_tag(omniauth_authorize_path(:user, :crowd), id: 'new_crowd_user' class: 'show-gl-field-errors') do
+= form_tag(omniauth_authorize_path(:user, :crowd), id: 'new_crowd_user', class: 'show-gl-field-errors') do
.form-group
= label_tag 'Username or email', for: :username
= text_field_tag :username, nil, {class: "form-control top", title: "This field is required", autofocus: "autofocus", required: true }