QrRapido/Views/Pagamento/Sucesso.cshtml
Ricardo Carneiro 3fa95aefd8
Some checks failed
Deploy QR Rapido / test (push) Successful in 3m44s
Deploy QR Rapido / build-and-push (push) Failing after 6s
Deploy QR Rapido / deploy-staging (push) Has been skipped
Deploy QR Rapido / deploy-production (push) Has been skipped
feat: ajustes do stripe
2025-08-03 19:52:32 -03:00

15 lines
477 B
Plaintext

@using Microsoft.Extensions.Localization
@inject IStringLocalizer<QRRapidoApp.Resources.SharedResource> Localizer
@{
Layout = "~/Views/Shared/_Layout.cshtml";
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>