77 lines
2.8 KiB
HTML
77 lines
2.8 KiB
HTML
<div class="align-items-center container d-flex h-100 justify-content-center">
|
|
<div class="row w-100">
|
|
<div class="col">
|
|
<div class="align-items-center d-flex flex-column">
|
|
<gf-membership-card
|
|
[expiresAt]="user?.subscription?.expiresAt | date: defaultDateFormat"
|
|
[hasPermissionToCreateApiKey]="hasPermissionToCreateApiKey"
|
|
[name]="user?.subscription?.type"
|
|
(generateApiKeyClicked)="onGenerateApiKey()"
|
|
/>
|
|
@if (user?.subscription?.type === 'Basic') {
|
|
<div class="d-flex flex-column mt-5">
|
|
@if (
|
|
hasPermissionForSubscription && hasPermissionToUpdateUserSettings
|
|
) {
|
|
<button color="primary" mat-flat-button (click)="onCheckout()">
|
|
@if (user.subscription.offer.isRenewal) {
|
|
<ng-container i18n>Renew Plan</ng-container>
|
|
} @else {
|
|
<ng-container i18n>Upgrade Plan</ng-container>
|
|
}
|
|
</button>
|
|
@if (price) {
|
|
<div class="mt-1 text-center">
|
|
@if (coupon) {
|
|
<del class="text-muted"
|
|
>{{ baseCurrency }} {{ price }}</del
|
|
> {{ baseCurrency }} {{ price - coupon }}
|
|
} @else {
|
|
{{ baseCurrency }} {{ price }}
|
|
}
|
|
<span i18n>per year</span>
|
|
</div>
|
|
}
|
|
@if (durationExtension) {
|
|
<div class="mt-1 text-center">
|
|
<div
|
|
class="badge badge-pill badge-warning font-weight-normal px-2 py-1"
|
|
>
|
|
<strong>Limited Offer!</strong> Get
|
|
{{ durationExtension }} extra
|
|
</div>
|
|
</div>
|
|
}
|
|
}
|
|
<div class="align-items-center d-flex justify-content-center mt-4">
|
|
@if (!user?.subscription?.expiresAt) {
|
|
<a class="mx-1" mat-stroked-button [href]="trySubscriptionMail"
|
|
><span i18n>Try Premium</span>
|
|
<gf-premium-indicator
|
|
class="d-inline-block ml-1"
|
|
[enableLink]="false"
|
|
/>
|
|
</a>
|
|
}
|
|
@if (hasPermissionToUpdateUserSettings) {
|
|
<a
|
|
class="mx-1"
|
|
i18n
|
|
mat-stroked-button
|
|
[routerLink]=""
|
|
(click)="onRedeemCoupon()"
|
|
>Redeem Coupon</a
|
|
>
|
|
}
|
|
</div>
|
|
</div>
|
|
} @else {
|
|
<div class="mt-3 text-muted">
|
|
<small i18n>No auto-renewal.</small>
|
|
</div>
|
|
}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|