mirror of https://github.com/ghostfolio/ghostfolio
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
63 lines
2.3 KiB
63 lines
2.3 KiB
<div class="container">
|
|
<h1 class="d-none d-sm-block h3 mb-3 text-center" i18n>Membership</h1>
|
|
<div class="row">
|
|
<div class="col">
|
|
<div class="align-items-center d-flex flex-column">
|
|
<gf-membership-card
|
|
[expiresAt]="user?.subscription?.expiresAt | date: defaultDateFormat"
|
|
[name]="user?.subscription?.type"
|
|
></gf-membership-card>
|
|
<div
|
|
*ngIf="user?.subscription?.type === 'Basic'"
|
|
class="d-flex flex-column mt-5"
|
|
>
|
|
<ng-container
|
|
*ngIf="hasPermissionForSubscription && hasPermissionToUpdateUserSettings"
|
|
>
|
|
<button color="primary" mat-flat-button (click)="onCheckout()">
|
|
<ng-container *ngIf="user.subscription.offer === 'default'" i18n
|
|
>Upgrade</ng-container
|
|
>
|
|
<ng-container *ngIf="user.subscription.offer === 'renewal'" i18n
|
|
>Renew</ng-container
|
|
>
|
|
</button>
|
|
<div *ngIf="price" class="mt-1 text-center">
|
|
<ng-container *ngIf="coupon"
|
|
><del class="text-muted"
|
|
>{{ baseCurrency }} {{ price }}</del
|
|
> {{ baseCurrency }} {{ price - coupon
|
|
}}</ng-container
|
|
>
|
|
<ng-container *ngIf="!coupon"
|
|
>{{ baseCurrency }} {{ price }}</ng-container
|
|
> <span i18n>per year</span>
|
|
</div>
|
|
</ng-container>
|
|
<div class="align-items-center d-flex justfiy-content-center mt-4">
|
|
<a
|
|
*ngIf="!user?.subscription?.expiresAt"
|
|
class="mx-1"
|
|
mat-stroked-button
|
|
[href]="trySubscriptionMail"
|
|
><span i18n>Try Premium</span>
|
|
<gf-premium-indicator
|
|
class="d-inline-block ml-1"
|
|
[enableLink]="false"
|
|
></gf-premium-indicator
|
|
></a>
|
|
<a
|
|
*ngIf="hasPermissionToUpdateUserSettings"
|
|
class="mx-1"
|
|
i18n
|
|
mat-stroked-button
|
|
[routerLink]=""
|
|
(click)="onRedeemCoupon()"
|
|
>Redeem Coupon</a
|
|
>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|