Website: Update start CTA visibility (#26865)
Closes: #26754 Changes: - Updated the start CTA on the website to be visible to logged out users.
This commit is contained in:
Vendored
+9
-2
@@ -225,8 +225,15 @@ will be disabled and/or hidden in the UI.
|
||||
return next();
|
||||
}
|
||||
|
||||
// Not logged in? Proceed as usual.
|
||||
if (!req.session.userId) { return next(); }
|
||||
// Not logged in? Set local variables for the start flow CTA.
|
||||
if (!req.session.userId) {
|
||||
res.locals.showStartCta = true;
|
||||
res.locals.collapseStartCta = false;
|
||||
if(req.session.expandCtaAt && req.session.expandCtaAt > Date.now()) {
|
||||
res.locals.collapseStartCta = true;
|
||||
}
|
||||
return next();
|
||||
}
|
||||
|
||||
// Otherwise, look up the logged-in user.
|
||||
var loggedInUser = await User.findOne({
|
||||
|
||||
Vendored
+1
@@ -67,4 +67,5 @@ module.exports.policies = {
|
||||
'view-meetups': true,
|
||||
'view-os-settings': true,
|
||||
'get-llm-generated-configuration-profile': true,
|
||||
'account/update-start-cta-visibility': true,
|
||||
};
|
||||
|
||||
Vendored
+2
@@ -263,6 +263,7 @@ module.exports.routes = {
|
||||
action: 'entrance/view-signup',
|
||||
locals: {
|
||||
hideFooterLinks: true,
|
||||
hideStartCTA: true,
|
||||
pageTitleForMeta: 'Sign up',
|
||||
pageDescriptionForMeta: 'Sign up for a Fleet account.',
|
||||
}
|
||||
@@ -271,6 +272,7 @@ module.exports.routes = {
|
||||
action: 'entrance/view-login',
|
||||
locals: {
|
||||
hideFooterLinks: true,
|
||||
hideStartCTA: true,
|
||||
pageTitleForMeta: 'Log in',
|
||||
pageDescriptionForMeta: 'Log in to Fleet.',
|
||||
}
|
||||
|
||||
+16
-3
@@ -1,14 +1,17 @@
|
||||
|
||||
<%if(typeof me !== 'undefined' && showStartCta){%>
|
||||
<%if(showStartCta){%>
|
||||
|
||||
<div purpose="continue-banner" id="start-cta" class="d-flex justify-content-end">
|
||||
<div purpose="banner-body" class="d-flex flex-row align-items-center invisible <%- collapseStartCta ? 'collapsed' : ''%>">
|
||||
<div purpose="banner-image-background">
|
||||
<div purpose="banner-image" class="<%=['2 - Aware'].includes(me.psychologicalStage) ? 'stage-two' : ['3 - Intrigued'].includes(me.psychologicalStage) ? 'stage-three' : ['4 - Has use case'].includes(me.psychologicalStage) ? 'stage-four' : ['5 - Personally confident'].includes(me.psychologicalStage) ? 'stage-five' : ['6 - Has team buy-in'].includes(me.psychologicalStage) ? 'stage-six' : ''%>">
|
||||
<div purpose="banner-image" class="<%= typeof me === 'undefined' ? 'stage-one' : ['2 - Aware'].includes(me.psychologicalStage) ? 'stage-two' : ['3 - Intrigued'].includes(me.psychologicalStage) ? 'stage-three' : ['4 - Has use case'].includes(me.psychologicalStage) ? 'stage-four' : ['5 - Personally confident'].includes(me.psychologicalStage) ? 'stage-five' : ['6 - Has team buy-in'].includes(me.psychologicalStage) ? 'stage-six' : ''%>">
|
||||
</div>
|
||||
</div>
|
||||
<div purpose="banner-text" class="d-flex flex-column justify-content-center">
|
||||
<% if(['2 - Aware', '3 - Intrigued'].includes(me.psychologicalStage)) { %>
|
||||
<% if(typeof me === 'undefined') { %>
|
||||
<strong>Tried Fleet yet?</strong>
|
||||
<p>Get started with Fleet</p>
|
||||
<% } else if(['2 - Aware', '3 - Intrigued'].includes(me.psychologicalStage)) { %>
|
||||
<strong>Tried Fleet yet?</strong>
|
||||
<p>Get started with Fleet</p>
|
||||
<% } else if(me.psychologicalStage === '4 - Has use case') { %>
|
||||
@@ -19,6 +22,15 @@
|
||||
<p>Let’s get you set up!</p>
|
||||
<% } %>
|
||||
<div>
|
||||
<%if(typeof me === 'undefined'){%>
|
||||
<a purpose="continue-button" class="start-cta-continue-button" href="/register">
|
||||
Start
|
||||
<svg purpose="animated-arrow" xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12">
|
||||
<path purpose="arrow-line" d="M1 6H9" stroke-width="2" stroke-linecap="round"/>
|
||||
<path purpose="chevron" d="M1.35712 1L5.64283 6L1.35712 11" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
</svg>
|
||||
</a>
|
||||
<%} else {%>
|
||||
<a purpose="continue-button" class="start-cta-continue-button" href="/start">
|
||||
Continue
|
||||
<svg purpose="animated-arrow" xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12">
|
||||
@@ -26,6 +38,7 @@
|
||||
<path purpose="chevron" d="M1.35712 1L5.64283 6L1.35712 11" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
</svg>
|
||||
</a>
|
||||
<%}%>
|
||||
</div>
|
||||
</div>
|
||||
<a purpose="continue-chevron" class="mobile-start-cta-continue-button" href="/start"> <img alt="continue" src="/images/chevron-core-fleet-black-7x12@2x.png"> </a>
|
||||
|
||||
Reference in New Issue
Block a user