26 lines
776 B
Plaintext
26 lines
776 B
Plaintext
@using Microsoft.AspNetCore.Mvc.Localization
|
|
@inject IViewLocalizer Localizer
|
|
@model string
|
|
@{
|
|
ViewData["Title"] = $"{Localizer["Common_Checkout"].Value} {Localizer["Checkout_PayPal_Error"].Value}";
|
|
}
|
|
|
|
<div id="checkoutPayPalErrorContainer" class="form">
|
|
<div class="row justify-content-center p-2">
|
|
<div class="col-auto">
|
|
<h3 class="text-uppercase">@Localizer["Checkout_PayPal_Error"]</h3>
|
|
</div>
|
|
</div>
|
|
<div class="row justify-content-center p-2">
|
|
<div class="col-auto">
|
|
<div class="alert alert-danger text-center">
|
|
@Model
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
@section Scripts{
|
|
<system-js url="~/scripts/Views/Shop/payPalError.js" fresh-import="true"></system-js>
|
|
} |