2017-10-23 22:55:46 +09:00
|
|
|
@model 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;
|
2019-10-31 15:10:00 +09:00
|
|
|
Layout = null;
|
2017-10-23 22:55:46 +09:00
|
|
|
}
|
|
|
|
|
2019-10-31 15:10:00 +09:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
2021-05-19 04:39:27 +02:00
|
|
|
<partial name="LayoutHead" />
|
2019-10-31 15:10:00 +09:00
|
|
|
</head>
|
|
|
|
<body class="bg-light">
|
2021-04-08 15:32:42 +02:00
|
|
|
<div class="modal-dialog modal-dialog-centered min-vh-100">
|
2019-10-31 15:10:00 +09:00
|
|
|
<div class="modal-content">
|
|
|
|
<div class="modal-header">
|
|
|
|
<h4 class="modal-title w-100 text-center">@Model.Title</h4>
|
2017-10-27 17:53:04 +09:00
|
|
|
</div>
|
2020-09-17 11:37:49 +02:00
|
|
|
|
|
|
|
<div class="modal-body text-center">
|
|
|
|
@if (Model.DescriptionHtml)
|
|
|
|
{
|
|
|
|
@Safe.Raw(Model.Description)
|
|
|
|
}
|
|
|
|
else
|
2019-10-31 15:10:00 +09:00
|
|
|
{
|
2020-09-17 11:37:49 +02:00
|
|
|
@Model.Description
|
2019-10-31 15:10:00 +09:00
|
|
|
}
|
2017-10-27 17:53:04 +09:00
|
|
|
</div>
|
2020-09-17 11:37:49 +02:00
|
|
|
|
2021-05-19 04:39:27 +02:00
|
|
|
@if (!string.IsNullOrEmpty(Model.Action))
|
2020-09-17 11:37:49 +02:00
|
|
|
{
|
2021-07-06 10:35:42 +02:00
|
|
|
<form method="post" class="modal-footer justify-content-center" action="@Model.ActionUrl" rel="noreferrer noopener">
|
2021-03-01 12:43:25 +01:00
|
|
|
<button type="submit" class="btn @Model.ButtonClass xmx-2" id="continue" style="min-width:25%;">@Model.Action</button>
|
|
|
|
<button type="submit" class="btn btn-secondary mx-2" onclick="history.back(); return false;" style="min-width:25%;">Go back</button>
|
2020-09-17 11:37:49 +02:00
|
|
|
</form>
|
|
|
|
}
|
2017-10-27 17:53:04 +09:00
|
|
|
</div>
|
|
|
|
</div>
|
2021-05-19 04:39:27 +02:00
|
|
|
<partial name="LayoutFoot" />
|
2019-10-31 15:10:00 +09:00
|
|
|
</body>
|
|
|
|
</html>
|