QrRapido/Views/Pagamento/Sucesso.cshtml
Ricardo Carneiro a8faf0ef2f
Some checks failed
Deploy QR Rapido / test (push) Successful in 3m45s
Deploy QR Rapido / build-and-push (push) Failing after 7s
Deploy QR Rapido / deploy-staging (push) Has been skipped
Deploy QR Rapido / deploy-production (push) Has been skipped
feat: tema claro ou escuro
2025-07-29 22:42:39 -03:00

14 lines
431 B
Plaintext

@using Microsoft.Extensions.Localization
@inject IStringLocalizer<QRRapidoApp.Resources.SharedResource> Localizer
@{
ViewData["Title"] = "Sucesso";
}
<div class="container text-center mt-5">
<div class="alert alert-success">
<h4 class="alert-heading">@Localizer["PaymentSuccessful"]</h4>
<p>@ViewBag.SuccessMessage</p>
</div>
<a href="/" class="btn btn-primary">@Localizer["BackToHome"]</a>
</div>