|
|
@ -1,3 +1,5 @@
|
|
|
|
|
|
|
|
@switch (variantIndex) {
|
|
|
|
|
|
|
|
@case (0) {
|
|
|
|
<div class="flex-grow-1 pt-0" mat-dialog-content>
|
|
|
|
<div class="flex-grow-1 pt-0" mat-dialog-content>
|
|
|
|
<div class="intro-container">
|
|
|
|
<div class="intro-container">
|
|
|
|
<div class="intro-inner-container mx-auto">
|
|
|
|
<div class="intro-inner-container mx-auto">
|
|
|
@ -13,8 +15,8 @@
|
|
|
|
Are you an ambitious investor who needs the full picture?
|
|
|
|
Are you an ambitious investor who needs the full picture?
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<p i18n>
|
|
|
|
<p i18n>
|
|
|
|
Upgrade to Ghostfolio Premium today and gain access to exclusive features
|
|
|
|
Upgrade to Ghostfolio Premium today and gain access to exclusive
|
|
|
|
to enhance your investment experience:
|
|
|
|
features to enhance your investment experience:
|
|
|
|
</p>
|
|
|
|
</p>
|
|
|
|
<ul class="list-unstyled mb-3 pl-3">
|
|
|
|
<ul class="list-unstyled mb-3 pl-3">
|
|
|
|
<li class="align-items-center d-flex mb-1">
|
|
|
|
<li class="align-items-center d-flex mb-1">
|
|
|
@ -43,8 +45,8 @@
|
|
|
|
</li>
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
</ul>
|
|
|
|
<p class="m-0" i18n>
|
|
|
|
<p class="m-0" i18n>
|
|
|
|
Get the tools to effectively manage your finances and refine your personal
|
|
|
|
Get the tools to effectively manage your finances and refine your
|
|
|
|
investment strategy.
|
|
|
|
personal investment strategy.
|
|
|
|
</p>
|
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
@ -60,3 +62,37 @@
|
|
|
|
<ion-icon class="ml-1" name="arrow-forward-outline" />
|
|
|
|
<ion-icon class="ml-1" name="arrow-forward-outline" />
|
|
|
|
</a>
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
@case (1) {
|
|
|
|
|
|
|
|
<h1
|
|
|
|
|
|
|
|
class="align-items-center d-flex justify-content-center"
|
|
|
|
|
|
|
|
mat-dialog-title
|
|
|
|
|
|
|
|
>
|
|
|
|
|
|
|
|
<span>Ghostfolio Premium</span>
|
|
|
|
|
|
|
|
<gf-premium-indicator class="ml-1" [enableLink]="false" />
|
|
|
|
|
|
|
|
</h1>
|
|
|
|
|
|
|
|
<div class="flex-grow-1 pt-0" mat-dialog-content>
|
|
|
|
|
|
|
|
<div class="align-items-center d-flex h-100 justify-content-center">
|
|
|
|
|
|
|
|
<gf-membership-card
|
|
|
|
|
|
|
|
class="gf-pointer-events-none"
|
|
|
|
|
|
|
|
[name]="data?.user?.subscription?.type"
|
|
|
|
|
|
|
|
/>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="flex-column" mat-dialog-actions>
|
|
|
|
|
|
|
|
<button class="mb-2 py-4 w-100" i18n mat-button (click)="closeDialog()">
|
|
|
|
|
|
|
|
Skip
|
|
|
|
|
|
|
|
</button>
|
|
|
|
|
|
|
|
<a
|
|
|
|
|
|
|
|
class="m-0 py-4 w-100"
|
|
|
|
|
|
|
|
color="primary"
|
|
|
|
|
|
|
|
mat-flat-button
|
|
|
|
|
|
|
|
[routerLink]="routerLinkPricing"
|
|
|
|
|
|
|
|
(click)="closeDialog()"
|
|
|
|
|
|
|
|
>
|
|
|
|
|
|
|
|
<span i18n>Join now</span>
|
|
|
|
|
|
|
|
<ion-icon class="ml-1" name="arrow-forward-outline" />
|
|
|
|
|
|
|
|
</a>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|