mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-22 14:22:40 +01:00
25 lines
658 B
Text
25 lines
658 B
Text
@model BTCPayServer.Abstractions.Models.ConfirmModel
|
|
|
|
@{
|
|
ViewData["Title"] = Model.Title;
|
|
Layout = "_LayoutSimple";
|
|
}
|
|
|
|
@section PageHeadContent {
|
|
<style>
|
|
body > .content-wrapper { flex-grow: 1; display: flex; }
|
|
body > .content-wrapper, body > .content-wrapper > .container { flex-grow:1; }
|
|
.modal-dialog .btn-close { display: none; }
|
|
</style>
|
|
}
|
|
|
|
@section PageFootContent {
|
|
<script>
|
|
delegate('click', '#ConfirmCancel', function () {
|
|
history.back();
|
|
})
|
|
</script>
|
|
}
|
|
<div class="modal position-static d-block" tabindex="-1">
|
|
<partial name="ConfirmModal" model="Model" />
|
|
</div>
|