@using BTCPayServer.Payments @model CheckoutExperienceViewModel @{ Layout = "../Shared/_NavLayout.cshtml"; ViewData.SetActivePageAndTitle(StoreNavPages.Checkout, "Checkout experience"); } @if (!ViewContext.ModelState.IsValid) {
}

Payment

@if (Model.PaymentMethods.Any()) {
@for (var index = 0; index < Model.PaymentMethodCriteria.Count; index++) { var criteria = Model.PaymentMethodCriteria[index]; }
Enable payment methods only when amount is..
@PaymentMethodId.Parse(criteria.PaymentMethod).ToPrettyString()
}

Fee will be shown for BTC and LTC onchain payments only.

Appearance

Bundled Themes: Legacy | Dark @* | Default*@

@section Scripts { @await Html.PartialAsync("_ValidationScriptsPartial") }