2024-10-07 19:58:08 +09:00
|
|
|
@model CheckoutModel
|
2019-03-31 13:46:38 -05:00
|
|
|
@{
|
|
|
|
Layout = null;
|
|
|
|
}
|
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
|
|
|
|
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
|
|
|
|
<META NAME="robots" CONTENT="noindex,nofollow">
|
|
|
|
<title>@Model.HtmlTitle</title>
|
|
|
|
</head>
|
|
|
|
<body>
|
2019-04-04 21:48:52 -05:00
|
|
|
<h1>Pay with @Model.StoreName</h1>
|
|
|
|
@if (Model.Status == "new")
|
|
|
|
{
|
2024-10-07 15:18:41 +09:00
|
|
|
<h1 class="text-danger">This payment method requires javascript.</h1>
|
2019-04-04 21:48:52 -05:00
|
|
|
}
|
|
|
|
else if (Model.Status == "paid" || Model.Status == "complete" || Model.Status == "confirmed")
|
|
|
|
{
|
|
|
|
<div>
|
|
|
|
<p>This invoice has been paid</p>
|
|
|
|
</div>
|
|
|
|
}
|
|
|
|
else if (Model.Status == "expired" || Model.Status == "invalid")
|
|
|
|
{
|
|
|
|
<div>
|
|
|
|
<p>This invoice has expired</p>
|
|
|
|
</div>
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
<div>
|
|
|
|
<p>Non-supported state of invoice</p>
|
|
|
|
</div>
|
|
|
|
}
|
2019-03-31 13:46:38 -05:00
|
|
|
|
2019-04-04 21:48:52 -05:00
|
|
|
<hr />
|
|
|
|
<p>
|
2020-11-08 00:39:10 -08:00
|
|
|
<a asp-action="Checkout" asp-route-invoiceId="@Model.InvoiceId">Go back to Javascript enabled invoice</a>
|
2019-04-04 21:48:52 -05:00
|
|
|
</p>
|
2023-01-18 13:38:58 +01:00
|
|
|
@await Component.InvokeAsync("UiExtensionPoint", new { location = "checkout-noscript-end", model = Model })
|
2019-03-31 13:46:38 -05:00
|
|
|
</body>
|
|
|
|
</html>
|