@inject BTCPayServer.Services.BTCPayServerEnvironment Env @inject DisplayFormatter DisplayFormatter @inject LinkGenerator LinkGenerator @using BTCPayServer.Plugins.Subscriptions @using BTCPayServer.Services @model PlanCheckoutViewModel @{ ViewData["Title"] = Model.Title; ViewData["StoreBranding"] = Model.StoreBranding; Layout = null; ViewData.SetBlazorAllowed(false); }
@if (Model.StoreBranding.LogoUrl is not null || Model.StoreName is not null) {
@Model.StoreName
}

@Model.Title

@Model.Data.Description

@DisplayFormatter.Currency(Model.Data.Price, Model.Data.Currency, DisplayFormatter.CurrencyFormat.Symbol)
per month
@if (Model.Data.PlanEntitlements.Count(i => !string.IsNullOrWhiteSpace(i.Entitlement.Description)) != 0) {
What's included:
    @foreach (var item in Model.Data.PlanEntitlements.Where(i => !string.IsNullOrWhiteSpace(i.Entitlement.Description))) {
  • @item.Entitlement.Description
  • }
}

Complete Your Order

Enter your email to proceed to secure payment

We'll send your receipt and account details here
@if (Model.IsTrial) { } else { }