mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-23 06:35:13 +01:00
24 lines
564 B
Text
24 lines
564 B
Text
@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" />
|