Skip to content
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

Remove Holiday Offer 2023. #1518

Merged
merged 3 commits into from
Jan 3, 2024
Merged
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
11 changes: 7 additions & 4 deletions src/app/account-app/account-upgrades.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -37,14 +37,17 @@ <h1 style="margin: 10px 0 0 0">1 extra year for free!</h1>
</div>
-->

<!--
<div class="holidayOffer">
<img src="assets/giftbox2023.png" style="float: left" />
<h1 style="margin: 20px 0 10px 0; font-size: 40px">Special Holiday Offer</h1>
<h3 style="margin: 10px 0; font-weight: normal;">We're feeling extra merry this month !</h3>
<h4 style="margin: 20px 0 0 0">Subscribe to or renew the Medium plan or larger through December and get</h4>
<h4 style="margin: 20px 0 0 0">Subscribe or upgrade to the Medium plan or larger throughout December and get</h4>
<h1 style="margin: 10px 0 20px 0">One extra year for free!</h1>
<p style="margin: 0px 0 0 0">Your account will be immediately upgraded to the selected plan, and the additional time added to your existing subscrription.</p>
</div>

-->

<div id="productGrid" *ngIf="subs_regular | async as subs_regular; else productsLoading">
<app-account-product *ngFor="let p of subs_regular" [ngClass]="'productCard'" [p]="p" [currency]="me.currency">
<ul>
Expand All @@ -53,15 +56,15 @@ <h1 style="margin: 10px 0 20px 0">One extra year for free!</h1>
</app-account-product>
</div>

<div id="productGrid" *ngIf="subs_special | async as subs_special; else productsLoading">
<!-- <div id="productGrid" *ngIf="subs_special | async as subs_special; else productsLoading">
<app-account-product *ngFor="let p of subs_special" [ngClass]="'productCardSpecial'" [p]="p"
[currency]="me.currency">
<ul>
<li *ngFor="let detail of p.details"> {{ detail }}
</ul>
</app-account-product>
</div>

-->
<ng-template #productsLoading>
<app-runbox-loading text="Loading available plans...">
</app-runbox-loading>
Expand Down
Loading