8000 remove parent home account sign up temporarily by mrfinch · Pull Request #7949 · codecombat/codecombat · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

remove parent home account sign up temporarily #7949

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 27, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/locale/en.js
Original file line number Diff line number Diff line change
Expand Up @@ -6243,7 +6243,7 @@ module.exports = {
subscriptions_billed: 'All subscriptions are billed in advance and may be paused, canceled, or resumed with no additional fees. Live Online Classes subscriptions are 100% risk-free within the first 30 days. If for any reason you decide not to continue, simply **contact us** within 30 days of purchase and we will refund 100% of your payment. All plans are automatically renewed at the same level and billing cycle unless otherwise changed or canceled. We do not offer refunds after the first 30 days. Cancellation after the first 30 days will take effect at the start of the next billing cycle.',
ai_hints: 'AI hints and prompt allowances are subject to change',
prefix_or: 'Or, ',
signup_description: 'sign up for self-paced access',
signup_description: 'Sign Up for Self-Paced Access',
homeschool_solution: 'Looking for a homeschool solution',
teach_child: 'If you plan to teach your child, we can provide a turnkey solution that empowers you to deliver our curriculum in your own home. We provide all the teaching resources needed for you and your child to succeed including course solution guides. Contact our team to learn more - email **[mailto:classes@codecombat.com]classes@codecombat.com** to connect with a learning advisor.',
meet_instructors: '**Meet our Instructors**',
Expand Down
39 changes: 32 additions & 7 deletions app/views/landing-pages/parents-v2/PageParents.vue
Original file line number Diff line number Diff line change
Expand Up @@ -30,15 +30,31 @@
</p>
</template>
<template #column-two>
<p class="text-p">
<CTAButton href="/parents/signup">
{{ $t('parents_v2.create_parent_account') }}
<p
v-if="me.isAnonymous()"
class="text-p"
>
<CTAButton
class="signup-button"
data-start-on-path="individual"
>
{{ $t('parents_v2.signup_description') }}
</CTAButton>
<mixed-color-label
:text="$t('parents_v2.to_explore')"
:inherit-default-color="true"
/>
</p>
<p
v-else-if="me.isRegisteredHomeUser() && !me.isPremium()"
class="text-p not-centered"
>
<CTAButton
@clickedCTA="openSubscribeModal"
>
{{ $t('subscribe.subscribe_title') }}
</CTAButton>
</p>
</template>
</two-column-block>
</template>
Expand Down Expand Up @@ -182,14 +198,16 @@
@clickedCTA="onClickMainCta"
>
{{ $t('parents_v2.schedule_free_class') }}
<template #description>
<template
v-if="me.isAnonymous()"
#description
>
<span>
{{ $t('parents_v2.prefix_or') }}
</span>
<a
class="mixed-color-highlight"
href="javascript:void(0);"
@click="openSubscribeModal"
class="mixed-color-highlight lowercase signup-button"
data-start-on-path="individual"
>
{{ $t('parents_v2.signup_description') }}
</a>
Expand Down Expand Up @@ -756,6 +774,10 @@ export default {
text-decoration: underline;
}

.lowercase {
text-transform: lowercase;
}

.container {
&__header {
.header-text {
Expand Down Expand Up @@ -817,6 +839,9 @@ export default {
.column-two {
display: flex;
justify-content: center;
}

.column-one {
align-items: center;
}

Expand Down
Loading
0