mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2026-01-01 13:14:30 +01:00
25 lines
564 B
Plaintext
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" />
|