26 lines
776 B
Plaintext

@using Microsoft.AspNetCore.Mvc.Localization
@inject IViewLocalizer Localizer
@model string
@{
ViewData["Title"] = $"{Localizer["Common_Checkout"].Value} {Localizer["Checkout_Klarna_Error"].Value}";
}
<div id="checkoutKlarnaErrorContainer" class="form">
<div class="row justify-content-center p-2">
<div class="col-auto">
<h3 class="text-uppercase">@Localizer["Checkout_Klarna_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/klarnaError.js" fresh-import="true"></system-js>
}