btcpayserver/BTCPayServer/Views/Shared/Confirm.cshtml
d11n e8291eb00e
Move ConfirmModel to Abstractions (#3964)
To make it available to plugins.
2022-07-15 12:38:33 +09:00

25 lines
564 B
Plaintext

@model BTCPayServer.Abstractions.Models.ConfirmModel
@{
ViewData["Title"] = Model.Title;
Layout = "_LayoutSimple";
}
@section PageHeadContent {
<style>
body > .content-wrapper { display: flex; min-height: 100vh; }
.modal-dialog .btn-close { display: none; }
</style>
}
@section PageFootContent {
<script>
document.getElementById('ConfirmCancel').addEventListener('click', function () {
history.back();
return false;
})
</script>
}
<partial name="ConfirmModal" model="Model" />