2022-07-15 05:38:33 +02:00
|
|
|
@model BTCPayServer.Abstractions.Models.ConfirmModel
|
2019-10-31 15:10:00 +09:00
|
|
|
|
2017-10-23 22:55:46 +09:00
|
|
|
@{
|
2019-11-06 12:19:06 +09:00
|
|
|
ViewData["Title"] = Model.Title;
|
2021-09-07 04:55:53 +02:00
|
|
|
Layout = "_LayoutSimple";
|
2017-10-23 22:55:46 +09:00
|
|
|
}
|
|
|
|
|
2021-09-07 04:55:53 +02:00
|
|
|
@section PageHeadContent {
|
|
|
|
<style>
|
2023-02-15 16:17:22 +01:00
|
|
|
body > .content-wrapper { flex-grow: 1; display: flex; }
|
|
|
|
body > .content-wrapper, body > .content-wrapper > .container { flex-grow:1; }
|
2021-09-07 04:55:53 +02:00
|
|
|
.modal-dialog .btn-close { display: none; }
|
|
|
|
</style>
|
|
|
|
}
|
2020-09-17 11:37:49 +02:00
|
|
|
|
2021-09-07 04:55:53 +02:00
|
|
|
@section PageFootContent {
|
|
|
|
<script>
|
2023-02-15 16:17:22 +01:00
|
|
|
delegate('click', '#ConfirmCancel', function () {
|
2021-09-07 04:55:53 +02:00
|
|
|
history.back();
|
|
|
|
})
|
|
|
|
</script>
|
|
|
|
}
|
2023-02-15 16:17:22 +01:00
|
|
|
<div class="modal position-static d-block" tabindex="-1">
|
|
|
|
<partial name="ConfirmModal" model="Model" />
|
|
|
|
</div>
|