btcpayserver/BTCPayServer/Views/Shared/Confirm.cshtml

25 lines
531 B
Plaintext
Raw Normal View History

2017-10-23 15:55:46 +02:00
@model ConfirmModel
2019-10-31 07:10:00 +01:00
2017-10-23 15:55:46 +02:00
@{
ViewData["Title"] = Model.Title;
Layout = "_LayoutSimple";
2017-10-23 15:55:46 +02:00
}
@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" />