mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-24 21:12:38 -04:00
d7233870b9
[web] Setup split test for new features page GitOrigin-RevId: c301089f2a251fef6cdc4434ac3c8356bb17545d
39 lines
2.1 KiB
Text
39 lines
2.1 KiB
Text
extends ../layout
|
|
|
|
block content
|
|
- var featuresPageVariantNew = splitTestVariants && splitTestVariants['features-page'] && splitTestVariants['features-page'] === 'new'
|
|
- var featuresLink = featuresPageVariantNew ? "/about/features-overview" : "/learn/how-to/Overleaf_premium_features"
|
|
- var featuresTranslationKey = featuresPageVariantNew ? 'get_most_subscription_by_checking_features' : 'get_most_subscription_by_checking_premium_features'
|
|
|
|
main.content.content-alt#main-content
|
|
.container
|
|
.row
|
|
.col-md-8.col-md-offset-2
|
|
.card(ng-cloak)
|
|
.page-header
|
|
h2 #{translate("thanks_for_subscribing")}
|
|
|
|
.alert.alert-success
|
|
if (personalSubscription.recurly.trial_ends_at)
|
|
p !{translate("next_payment_of_x_collectected_on_y", {paymentAmmount: personalSubscription.recurly.displayPrice, collectionDate: personalSubscription.recurly.nextPaymentDueAt}, ['strong', 'strong'])}
|
|
include ./_price_exceptions
|
|
p #{translate("to_modify_your_subscription_go_to")}
|
|
a(href="/user/subscription") #{translate("manage_subscription")}.
|
|
p
|
|
if (personalSubscription.groupPlan == true)
|
|
a.btn.btn-primary.btn-large(href=`/manage/groups/${personalSubscription._id}/members`) #{translate("add_your_first_group_member_now")}
|
|
p.letter-from-founders
|
|
p #{translate("thanks_for_subscribing_you_help_sl", {planName:personalSubscription.plan.name})}
|
|
p !{translate(featuresTranslationKey, {}, [{name: 'a', attrs: {href: featuresLink}}])}
|
|
p #{translate("need_anything_contact_us_at")}
|
|
a(href=`mailto:${settings.adminEmail}`, ng-non-bindable) #{settings.adminEmail}
|
|
| .
|
|
p !{translate("help_improve_overleaf_fill_out_this_survey", {}, [{name: 'a', attrs: {href: 'https://forms.gle/CdLNX9m6NLxkv1yr5', target:'_blank', rel:'noopener noreferrer'}}])}
|
|
p #{translate("regards")},
|
|
br(ng-non-bindable)
|
|
| The #{settings.appName} Team
|
|
p
|
|
if (postCheckoutRedirect)
|
|
a.btn.btn-primary(href=postCheckoutRedirect) < #{translate("back_to_your_projects")}
|
|
else
|
|
a.btn.btn-primary(href="/project") < #{translate("back_to_your_projects")}
|