Browse Source

Panel for plans page.

pull/271/head
Sebastian Stehle 8 years ago
parent
commit
0bbc380dab
  1. 28
      src/Squidex/app/features/settings/pages/plans/plans-page.component.html

28
src/Squidex/app/features/settings/pages/plans/plans-page.component.html

@ -1,27 +1,20 @@
<sqx-title message="{app} | Plans | Settings" parameter1="app" [value1]="appsState.appName"></sqx-title> <sqx-title message="{app} | Plans | Settings" parameter1="app" [value1]="appsState.appName"></sqx-title>
<sqx-panel desiredWidth="61rem"> <sqx-panel desiredWidth="61rem">
<div class="panel-header"> <ng-container title>
<div class="panel-title-row"> Update Plan
<div class="float-right"> </ng-container>
<ng-container menu>
<button class="btn btn-link btn-secondary" (click)="load(true)" title="Refresh Plans (CTRL + SHIFT + R)"> <button class="btn btn-link btn-secondary" (click)="load(true)" title="Refresh Plans (CTRL + SHIFT + R)">
<i class="icon-reset"></i> Refresh <i class="icon-reset"></i> Refresh
</button> </button>
<sqx-shortcut keys="ctrl+shift+r" (trigger)="load(true)"></sqx-shortcut> <sqx-shortcut keys="ctrl+shift+r" (trigger)="load(true)"></sqx-shortcut>
</div> </ng-container>
<h3 class="panel-title">Update Plan</h3> <ng-container content>
</div> <ng-container *ngIf="plans">
<a class="panel-close" sqxParentLink>
<i class="icon-close"></i>
</a>
</div>
<div class="panel-main">
<div class="panel-content">
<div *ngIf="plans">
<div class="panel-alert panel-alert-danger" *ngIf="!planOwned"> <div class="panel-alert panel-alert-danger" *ngIf="!planOwned">
You have not created the subscription. Therefore you cannot change the plan. You have not created the subscription. Therefore you cannot change the plan.
</div> </div>
@ -80,7 +73,6 @@
<div *ngIf="plans.hasPortal" class="billing-portal-link"> <div *ngIf="plans.hasPortal" class="billing-portal-link">
Go to <a target="_blank" href="{{portalUrl}}">Billing Portal</a> for payment history and subscription overview. Go to <a target="_blank" href="{{portalUrl}}">Billing Portal</a> for payment history and subscription overview.
</div> </div>
</div> </ng-container>
</div> </ng-container>
</div>
</sqx-panel> </sqx-panel>
Loading…
Cancel
Save