From 7eeb38d7c8a79e50519fe7686b78917b03bdcab1 Mon Sep 17 00:00:00 2001 From: Ed Woodward Date: Thu, 5 Mar 2020 13:53:43 -0600 Subject: [PATCH 01/17] Most of the changes for tracking Google Analytics events --- app/assets/javascripts/newflow.js | 2 + app/views/layouts/_google_analytics.html.erb | 50 ++++++++++++++++++- app/views/layouts/newflow_layout.html.erb | 1 + .../forgot_password_form.html.erb | 3 +- .../newflow/login_signup/login_form.html.erb | 12 +++-- .../login_signup/student_signup_form.html.erb | 9 ++-- .../newflow/login_signup/welcome.html.erb | 4 +- 7 files changed, 68 insertions(+), 13 deletions(-) diff --git a/app/assets/javascripts/newflow.js b/app/assets/javascripts/newflow.js index 576c15e9e..9604c895b 100644 --- a/app/assets/javascripts/newflow.js +++ b/app/assets/javascripts/newflow.js @@ -15,8 +15,10 @@ $(document).ready(function () { var password_field = $('[name$="[password]"]')[0]; if ($(password_field).attr("type") == "password") { $(password_field).attr("type", "text"); + gaShowHide('Show'); } else { $(password_field).attr("type", "password"); + gaShowHide('Hide'); } }); }); diff --git a/app/views/layouts/_google_analytics.html.erb b/app/views/layouts/_google_analytics.html.erb index ecec6e618..f7e04777e 100644 --- a/app/views/layouts/_google_analytics.html.erb +++ b/app/views/layouts/_google_analytics.html.erb @@ -1,4 +1,4 @@ -<% if Rails.env.production? and Settings::GoogleAnalytics.send_google_analytics == true and !Settings::GoogleAnalytics.google_analytics_code.blank? %> + -<% end %> + diff --git a/app/views/layouts/newflow_layout.html.erb b/app/views/layouts/newflow_layout.html.erb index 501696f87..3dbc75f5a 100644 --- a/app/views/layouts/newflow_layout.html.erb +++ b/app/views/layouts/newflow_layout.html.erb @@ -40,6 +40,7 @@ <%= render partial: 'layouts/newflow_footer' %> + <%= render partial: "layouts/google_analytics" %> <%= yield :javascript %> diff --git a/app/views/newflow/login_signup/forgot_password_form.html.erb b/app/views/newflow/login_signup/forgot_password_form.html.erb index 9cb45e72e..2860fbdce 100644 --- a/app/views/newflow/login_signup/forgot_password_form.html.erb +++ b/app/views/newflow/login_signup/forgot_password_form.html.erb @@ -46,7 +46,8 @@
<%= f.submit I18n.t(:"login_signup_form.reset_my_password_button"), disable_with: I18n.t(:"login_signup_form.reset_my_password_button"), - class: 'primary' %> + class: 'primary', + :data => {:ga_category => 'Login', ga_action: 'Click', ga_label: 'Password Reset'} %>
<% end %> diff --git a/app/views/newflow/login_signup/login_form.html.erb b/app/views/newflow/login_signup/login_form.html.erb index d52f7cb8f..482a9e378 100644 --- a/app/views/newflow/login_signup/login_form.html.erb +++ b/app/views/newflow/login_signup/login_form.html.erb @@ -20,14 +20,14 @@
- <%= link_to newflow_auth_path(:facebooknewflow), class: 'facebook btn' do %> + <%= link_to newflow_auth_path(:facebooknewflow), class: 'facebook btn', :data => {:ga_category => 'Login', ga_action: 'Click', ga_label: 'Facebook'} do %> Facebook <% end %>
- <%= link_to newflow_auth_path(:googlenewflow), class: 'google btn' do %> + <%= link_to newflow_auth_path(:googlenewflow), class: 'google btn', :data => {:ga_category => 'Login', ga_action: 'Click', ga_label: 'Google'} do %> Google <% end %> @@ -58,7 +58,7 @@ class: 'field-label required' %> - SHOW + SHOW <%= fh.text_field name: :password, @@ -71,7 +71,8 @@
<%= f.submit I18n.t(:"login_signup_form.continue_button"), disable_with: I18n.t(:"login_signup_form.continue_button"), - class: 'primary' + class: 'primary', + :data => {:ga_category => 'Login & Account Creation', ga_action: 'Continue', ga_label: 'Continue '} %>
@@ -80,7 +81,8 @@ link_to( I18n.t(:"login_signup_form.forgot_password"), forgot_password_form_path, - id: 'forgot-passwork-link' + id: 'forgot-passwork-link', + :data => {:ga_category => 'Login', ga_action: 'Click', ga_label: 'Password Reset'} ) %>
diff --git a/app/views/newflow/login_signup/student_signup_form.html.erb b/app/views/newflow/login_signup/student_signup_form.html.erb index ec6fcfaa7..132bfd83a 100644 --- a/app/views/newflow/login_signup/student_signup_form.html.erb +++ b/app/views/newflow/login_signup/student_signup_form.html.erb @@ -40,14 +40,16 @@
<%= link_to newflow_auth_path(:facebooknewflow), - class: 'facebook btn' do %> + class: 'facebook btn', + :data => {:ga_category => 'Account Creation', ga_action: 'Click', ga_label: '3B-Facebook'} do %> Facebook <% end %>
- <%= link_to newflow_auth_path(:googlenewflow), class: 'google btn' do %> + <%= link_to newflow_auth_path(:googlenewflow), class: 'google btn', + :data => {:ga_category => 'Account Creation', ga_action: 'Click', ga_label: '3C-Google'} do %> Google <% end %> @@ -155,7 +157,8 @@
<%= f.submit I18n.t(:"login_signup_form.continue_button"), data: { disable_with: I18n.t(:"login_signup_form.continue_button") }, - class: 'primary', id: 'signup_form_submit_button' %> + class: 'primary', id: 'signup_form_submit_button', + :data => {:ga_category => 'Account Creation', ga_action: 'Click', ga_label: '3A-Email'} %>
<% end %> <% end %> diff --git a/app/views/newflow/login_signup/welcome.html.erb b/app/views/newflow/login_signup/welcome.html.erb index b6cd7c494..91413b118 100644 --- a/app/views/newflow/login_signup/welcome.html.erb +++ b/app/views/newflow/login_signup/welcome.html.erb @@ -14,7 +14,7 @@
- <%= link_to newflow_signup_student_path do%> + <%= link_to newflow_signup_student_path, :data => {:'ga-category' => 'Account Creation', 'ga-action': 'Click', 'ga-label': '2A-Student'} do%>
<%= I18n.t(:"login_signup_form.student") %> <%= image_tag('student-icon.svg') %> @@ -30,7 +30,7 @@
<%# bpff = "bypass feature flag" %> <%# the value is just a boolean. In this case I decided to use `9` for a little code obfuscation. %> - <%= link_to signup_path(bpff: 9) do%> + <%= link_to signup_path(bpff: 9), :data => {:'ga-category' => 'Account Creation', 'ga-action': 'Click', 'ga-label': '2B-Educator'} do%>
<%= I18n.t(:"login_signup_form.educator") %> <%= image_tag('educator-icon.svg') %> From 7c194f249468693bac00ef2acac82764a068f27b Mon Sep 17 00:00:00 2001 From: Ed Woodward Date: Sun, 8 Mar 2020 19:44:47 -0500 Subject: [PATCH 02/17] More events sent to Google Analytics --- app/views/layouts/_google_analytics.html.erb | 15 +++++++++++++-- .../_confirmation_form_template.html.erb | 3 ++- .../confirmation_form_updated_email.html.erb | 3 ++- .../login_signup/forgot_password_form.html.erb | 3 ++- .../newflow/login_signup/profile_newflow.html.erb | 4 ++-- .../newflow/login_signup/signup_done.html.erb | 2 +- 6 files changed, 22 insertions(+), 8 deletions(-) diff --git a/app/views/layouts/_google_analytics.html.erb b/app/views/layouts/_google_analytics.html.erb index f7e04777e..9f9367d2c 100644 --- a/app/views/layouts/_google_analytics.html.erb +++ b/app/views/layouts/_google_analytics.html.erb @@ -21,7 +21,6 @@ $('[data-ga-category]').on('click', function() { }); window.addEventListener('beforeunload', (event) => { - //event.preventDefault(); if((window.location.href.indexOf("signup") > -1) || (window.location.href.indexOf("profile") > -1)) { var category = 'Account Creation'; var action = 'Click'; @@ -40,7 +39,7 @@ window.addEventListener('beforeunload', (event) => { return; }); -var gaShowHide = function(buttonText){ +var gaShowHide = function(){ var location = 'Login' if(window.location.href.indexOf("signup") > -1) { location = 'Sign Up'; @@ -53,5 +52,17 @@ var gaShowHide = function(buttonText){ }); } +document.addEventListener("DOMContentLoaded", function() { + if(window.location.href.indexOf("login") > -1) { + ga('send', { + hitType: 'event', + eventCategory: 'Login & Account Creation', + eventAction: 'open', + eventLabel: Referrer + ' - ' + document.referrer + }); + + } +}); + diff --git a/app/views/newflow/login_signup/_confirmation_form_template.html.erb b/app/views/newflow/login_signup/_confirmation_form_template.html.erb index 2cbc0d82a..1c5559ffc 100644 --- a/app/views/newflow/login_signup/_confirmation_form_template.html.erb +++ b/app/views/newflow/login_signup/_confirmation_form_template.html.erb @@ -41,7 +41,8 @@
<%= f.submit I18n.t(:"login_signup_form.confirm_my_account_button"), disable_with: I18n.t(:"login_signup_form.confirm_my_account_button"), - class: 'primary' %> + class: 'primary', + :data => {:'ga-category' => 'Account Creation', 'ga-action': 'Click', 'ga-label': '4A-Confirm My Account'} %>
<% end %> diff --git a/app/views/newflow/login_signup/confirmation_form_updated_email.html.erb b/app/views/newflow/login_signup/confirmation_form_updated_email.html.erb index e4b970714..76470fa40 100644 --- a/app/views/newflow/login_signup/confirmation_form_updated_email.html.erb +++ b/app/views/newflow/login_signup/confirmation_form_updated_email.html.erb @@ -6,7 +6,8 @@ render( help_message: I18n.t( :"login_signup_form.havent_received_message", contact_us: link_to( - I18n.t(:"login_signup_form.contact_us"), knowledge_base_url, target: '_blank' + I18n.t(:"login_signup_form.contact_us"), knowledge_base_url, target: '_blank', + :data => {:'ga-category' => 'Login', 'ga-action': 'Click', 'ga-label': 'Contact Us'} ) ).html_safe } diff --git a/app/views/newflow/login_signup/forgot_password_form.html.erb b/app/views/newflow/login_signup/forgot_password_form.html.erb index 2860fbdce..826e3b652 100644 --- a/app/views/newflow/login_signup/forgot_password_form.html.erb +++ b/app/views/newflow/login_signup/forgot_password_form.html.erb @@ -37,7 +37,8 @@ I18n.t( :"login_signup_form.cant_remember_email", contact_us_link:link_to( - I18n.t(:"login_signup_form.contact_us"), knowledge_base_url, target: '_blank' + I18n.t(:"login_signup_form.contact_us"), knowledge_base_url, target: '_blank', + :data => {:ga_category => 'Login', ga_action: 'Click', ga_label: 'Contact Us'} ) ).html_safe %> diff --git a/app/views/newflow/login_signup/profile_newflow.html.erb b/app/views/newflow/login_signup/profile_newflow.html.erb index 3f6e4f4fb..17f1cc25f 100644 --- a/app/views/newflow/login_signup/profile_newflow.html.erb +++ b/app/views/newflow/login_signup/profile_newflow.html.erb @@ -62,7 +62,7 @@ <%= ox_card do %>
- <%= link_to ('Log out'), newflow_logout_path, class: 'sign-out' %> + <%= link_to ('Log out'), newflow_logout_path, class: 'sign-out', :data => {:'ga-category' => 'Logout', 'ga-action': 'Click', 'ga-label': 'Logout'} %>

<%= t(:"login_signup_form.profile_newflow_page_header") %>

@@ -97,7 +97,7 @@ <% current_user.email_addresses.order(:created_at).each do |email| %> <%= email_entry(value: email.value, id: email.id, is_verified: email.verified, is_searchable: email.is_searchable) %> <% end %> - <%= link_to 'Add email address', '#', {id: 'add-an-email'} %> + <%= link_to 'Add email address', '#', {id: 'add-an-email', :data => {:'ga-category' => 'My Account', 'ga-action': 'Click', 'ga-label': 'Add Email Address'}}%>
diff --git a/app/views/newflow/login_signup/signup_done.html.erb b/app/views/newflow/login_signup/signup_done.html.erb index 628a8dc27..f84f04011 100644 --- a/app/views/newflow/login_signup/signup_done.html.erb +++ b/app/views/newflow/login_signup/signup_done.html.erb @@ -6,7 +6,7 @@ classes: "signup-page", header: I18n.t(:"login_signup_form.youre_done", first_name: @first_name), show_exit_icon: true) do %> -
+
<%= I18n.t(:"login_signup_form.youre_done_description", email_address: @email_address).html_safe From 280ba1b4ae773f600527119f8f03e23a619bc430 Mon Sep 17 00:00:00 2001 From: Ed Woodward Date: Mon, 9 Mar 2020 15:08:47 -0500 Subject: [PATCH 03/17] Final events added --- app/views/layouts/_google_analytics.html.erb | 15 ++++++++++++--- .../newflow/login_signup/profile_newflow.html.erb | 2 +- .../newflow/login_signup/signup_done.html.erb | 4 ++-- 3 files changed, 15 insertions(+), 6 deletions(-) diff --git a/app/views/layouts/_google_analytics.html.erb b/app/views/layouts/_google_analytics.html.erb index 9f9367d2c..0a5c1a6d7 100644 --- a/app/views/layouts/_google_analytics.html.erb +++ b/app/views/layouts/_google_analytics.html.erb @@ -1,4 +1,4 @@ - +<% if Rails.env.production? and Settings::GoogleAnalytics.send_google_analytics == true and !Settings::GoogleAnalytics.google_analytics_code.blank? %> +<% end %> diff --git a/app/views/newflow/login_signup/profile_newflow.html.erb b/app/views/newflow/login_signup/profile_newflow.html.erb index 17f1cc25f..7488bc8ef 100644 --- a/app/views/newflow/login_signup/profile_newflow.html.erb +++ b/app/views/newflow/login_signup/profile_newflow.html.erb @@ -97,7 +97,7 @@ <% current_user.email_addresses.order(:created_at).each do |email| %> <%= email_entry(value: email.value, id: email.id, is_verified: email.verified, is_searchable: email.is_searchable) %> <% end %> - <%= link_to 'Add email address', '#', {id: 'add-an-email', :data => {:'ga-category' => 'My Account', 'ga-action': 'Click', 'ga-label': 'Add Email Address'}}%> + <%= link_to 'Add email address', '#', {id: 'add-an-email', :data => {:'ga-category' => 'My Account', 'ga-action': 'Click', 'ga-label': 'Add Email Address'}} %>
diff --git a/app/views/newflow/login_signup/signup_done.html.erb b/app/views/newflow/login_signup/signup_done.html.erb index f84f04011..18862248f 100644 --- a/app/views/newflow/login_signup/signup_done.html.erb +++ b/app/views/newflow/login_signup/signup_done.html.erb @@ -6,7 +6,7 @@ classes: "signup-page", header: I18n.t(:"login_signup_form.youre_done", first_name: @first_name), show_exit_icon: true) do %> - +
<%= I18n.t(:"login_signup_form.youre_done_description", email_address: @email_address).html_safe @@ -15,7 +15,7 @@
<%= image_tag('highlighting_and_note_taking.png', style: 'width: inherit;' ) %> - <%= button_tag('Finish') %> + <%= button_tag('Finish', :data => {:'ga-category' => 'Account Creation', 'ga-action': 'Click', 'ga-label': '5-Finish'}) %>
<% end %> From 38f3b08f582e646616ee2c5ccf74a2ee057120da Mon Sep 17 00:00:00 2001 From: Ed Woodward Date: Tue, 10 Mar 2020 16:06:48 -0500 Subject: [PATCH 04/17] Added documentation to README and added missing item --- README.md | 58 ++++++++++++++++++++ app/views/layouts/_google_analytics.html.erb | 12 +++- 2 files changed, 68 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 8cc535823..441043ed4 100644 --- a/README.md +++ b/README.md @@ -278,3 +278,61 @@ When someone signs up, especially if they are Educators, we want to keep track o Keeping the above in mind will help you make sense of the signup form and related business logic such as [PushSalesforceLead](app/routines/push_salesforce_lead.rb). In short, new users become sales leads in Salesforce. + +## Google Analaytics +The following data is sent to Google Analytics + +When user lands on Login Page Send Referrer +| Category | Action | Label | +|----------|--------|-------| +|Login & Account Creation|open|Referrer - [referrer URL]| + +When user logs in with Facebook +| Category | Action | Label | +|----------|--------|-------| +|Login|Click|Facebook| + +When user logs in with Google +| Category | Action | Label | +|----------|--------|-------| +|Login|Click|Google| + +When user logs in with Email and Password +| Category | Action | Label | +|----------|--------|-------| +|Login|Click|Email| + +When a user reaches the Profile page via login (/login) or signup (/done) +| Category | Action | Label | +|----------|--------|-------| +|Profile|Referrer|Referrer - [Referrer URL]| + +Account Creation Steps +| Category | Action | Label |Description| +|----------|--------|-------|-----------| +|Account Creation|Click|1-Sign Up|Click the Sign Up tab| +|Account Creation|Click|2A-Student|Click the Student card| +|Account Creation|Click|2B-Educator|Click the Educator card| +|Account Creation|Click|3A-Email|Enters an email and password| +|Account Creation|Click|3B-Facebook|Clicks Facebook button| +|Account Creation|Click|3C-Google|Clicks Google button| +|Account Creation|Click|4-Confirm My Account|Clicks Confirm button after entering pin| +|Account Creation|Click|5-Finish|Click the Finish button| +|Account Creation|Click|5-Close Window|User closes the tab. This is somewhat unreliable since it can be triggered by other actions such as refeshing the page| + +Password Reset +| Category | Action | Label | +|----------|--------|-------| +|Login|Click|Password Reset| + +Add Email Address +| Category | Action | Label | +|----------|--------|-------| +|My Account|Click|Add Email Address| + +Close the Profile Page +| Category | Action | Label |Description| +|----------|--------|-------|-----------| +|My Account|Click|Close Window|User closes the tab. This is somewhat unreliable since it can be triggered by other actions such as refeshing the page| + + diff --git a/app/views/layouts/_google_analytics.html.erb b/app/views/layouts/_google_analytics.html.erb index 0a5c1a6d7..82b4b1a45 100644 --- a/app/views/layouts/_google_analytics.html.erb +++ b/app/views/layouts/_google_analytics.html.erb @@ -1,4 +1,4 @@ -<% if Rails.env.production? and Settings::GoogleAnalytics.send_google_analytics == true and !Settings::GoogleAnalytics.google_analytics_code.blank? %> + -<% end %> + From 34c1f4e4fea4356e1c5a606e7a37bb0f14f057ab Mon Sep 17 00:00:00 2001 From: Ed Woodward Date: Tue, 10 Mar 2020 16:11:34 -0500 Subject: [PATCH 05/17] Replaced code so it only runs in production --- app/views/layouts/_google_analytics.html.erb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/views/layouts/_google_analytics.html.erb b/app/views/layouts/_google_analytics.html.erb index 82b4b1a45..30c6ef638 100644 --- a/app/views/layouts/_google_analytics.html.erb +++ b/app/views/layouts/_google_analytics.html.erb @@ -1,4 +1,4 @@ - +<% if Rails.env.production? and Settings::GoogleAnalytics.send_google_analytics == true and !Settings::GoogleAnalytics.google_analytics_code.blank? %> - +<% end %> From 99456de12f65570fcf19d128bd96c32941c1272c Mon Sep 17 00:00:00 2001 From: Ed Woodward Date: Wed, 11 Mar 2020 09:26:41 -0500 Subject: [PATCH 06/17] requested changes --- app/views/layouts/_google_analytics.html.erb | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/app/views/layouts/_google_analytics.html.erb b/app/views/layouts/_google_analytics.html.erb index 30c6ef638..d7e18e05d 100644 --- a/app/views/layouts/_google_analytics.html.erb +++ b/app/views/layouts/_google_analytics.html.erb @@ -1,4 +1,4 @@ -<% if Rails.env.production? and Settings::GoogleAnalytics.send_google_analytics == true and !Settings::GoogleAnalytics.google_analytics_code.blank? %> + -<% end %> + From c01a01c193083771e7783833a62bdeac24b6ed5b Mon Sep 17 00:00:00 2001 From: Ed Woodward Date: Wed, 11 Mar 2020 11:21:08 -0500 Subject: [PATCH 07/17] Changed index checks to use paths --- app/views/layouts/_google_analytics.html.erb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/app/views/layouts/_google_analytics.html.erb b/app/views/layouts/_google_analytics.html.erb index d7e18e05d..2ab96a7e6 100644 --- a/app/views/layouts/_google_analytics.html.erb +++ b/app/views/layouts/_google_analytics.html.erb @@ -1,4 +1,4 @@ - +<% if Rails.env.production? and Settings::GoogleAnalytics.send_google_analytics == true and !Settings::GoogleAnalytics.google_analytics_code.blank? %> - +<% end %> From 9c6314f4cf8aca2841c3cb1f1fd2671751f13692 Mon Sep 17 00:00:00 2001 From: Ed Woodward Date: Thu, 5 Mar 2020 13:53:43 -0600 Subject: [PATCH 08/17] Most of the changes for tracking Google Analytics events --- app/assets/javascripts/newflow.js | 2 + app/views/layouts/_google_analytics.html.erb | 50 ++++++++++++++++++- app/views/layouts/newflow_layout.html.erb | 1 + .../forgot_password_form.html.erb | 3 +- .../newflow/login_signup/login_form.html.erb | 12 +++-- .../login_signup/student_signup_form.html.erb | 9 ++-- .../newflow/login_signup/welcome.html.erb | 4 +- 7 files changed, 68 insertions(+), 13 deletions(-) diff --git a/app/assets/javascripts/newflow.js b/app/assets/javascripts/newflow.js index 576c15e9e..9604c895b 100644 --- a/app/assets/javascripts/newflow.js +++ b/app/assets/javascripts/newflow.js @@ -15,8 +15,10 @@ $(document).ready(function () { var password_field = $('[name$="[password]"]')[0]; if ($(password_field).attr("type") == "password") { $(password_field).attr("type", "text"); + gaShowHide('Show'); } else { $(password_field).attr("type", "password"); + gaShowHide('Hide'); } }); }); diff --git a/app/views/layouts/_google_analytics.html.erb b/app/views/layouts/_google_analytics.html.erb index ecec6e618..f7e04777e 100644 --- a/app/views/layouts/_google_analytics.html.erb +++ b/app/views/layouts/_google_analytics.html.erb @@ -1,4 +1,4 @@ -<% if Rails.env.production? and Settings::GoogleAnalytics.send_google_analytics == true and !Settings::GoogleAnalytics.google_analytics_code.blank? %> + -<% end %> + diff --git a/app/views/layouts/newflow_layout.html.erb b/app/views/layouts/newflow_layout.html.erb index 501696f87..3dbc75f5a 100644 --- a/app/views/layouts/newflow_layout.html.erb +++ b/app/views/layouts/newflow_layout.html.erb @@ -40,6 +40,7 @@
<%= render partial: 'layouts/newflow_footer' %> + <%= render partial: "layouts/google_analytics" %> <%= yield :javascript %> diff --git a/app/views/newflow/login_signup/forgot_password_form.html.erb b/app/views/newflow/login_signup/forgot_password_form.html.erb index 437de6205..1b8c5737c 100644 --- a/app/views/newflow/login_signup/forgot_password_form.html.erb +++ b/app/views/newflow/login_signup/forgot_password_form.html.erb @@ -48,7 +48,8 @@
<%= f.submit I18n.t(:"login_signup_form.reset_my_password_button"), disable_with: I18n.t(:"login_signup_form.reset_my_password_button"), - class: 'primary' %> + class: 'primary', + :data => {:ga_category => 'Login', ga_action: 'Click', ga_label: 'Password Reset'} %>
<% end %> diff --git a/app/views/newflow/login_signup/login_form.html.erb b/app/views/newflow/login_signup/login_form.html.erb index d52f7cb8f..482a9e378 100644 --- a/app/views/newflow/login_signup/login_form.html.erb +++ b/app/views/newflow/login_signup/login_form.html.erb @@ -20,14 +20,14 @@