2022-01-07 04:32:00 +01:00
|
|
|
@model System.Collections.Generic.List<BTCPayServer.Data.Payouts.LightningLike.UILightningLikePayoutController.ConfirmVM>
|
2021-10-18 05:37:59 +02:00
|
|
|
@{
|
|
|
|
Layout = "../Shared/_Layout.cshtml";
|
|
|
|
ViewData["Title"] = "Confirm Lightning Payout";
|
|
|
|
var cryptoCode = Context.GetRouteValue("cryptoCode");
|
|
|
|
}
|
|
|
|
|
2022-01-25 03:07:52 +01:00
|
|
|
<h2 class="mt-1 mb-4">@ViewData["Title"]</h2>
|
2021-12-11 04:32:23 +01:00
|
|
|
<div class="row">
|
|
|
|
<div class="col-md-12">
|
|
|
|
<ul class="list-group">
|
|
|
|
@foreach (var item in Model)
|
|
|
|
{
|
|
|
|
<li class="list-group-item d-flex justify-content-between align-items-center">
|
|
|
|
<div data-bs-toggle="tooltip" class="text-break" title="@item.Destination">@item.Destination</div>
|
2021-10-18 05:37:59 +02:00
|
|
|
|
2021-12-11 04:32:23 +01:00
|
|
|
<span class="text-capitalize badge bg-secondary">@item.Amount @cryptoCode</span>
|
|
|
|
</li>
|
|
|
|
<form method="post" class="list-group-item justify-content-center" id="pay-invoices-form">
|
|
|
|
<button type="submit" class="btn btn-primary xmx-2" style="min-width:25%;" id="Pay">Pay</button>
|
|
|
|
<button type="button" class="btn btn-secondary mx-2" onclick="history.back(); return false;" style="min-width:25%;">Go back</button>
|
|
|
|
</form>
|
|
|
|
}
|
|
|
|
</ul>
|
2021-10-18 05:37:59 +02:00
|
|
|
</div>
|
2021-12-11 04:32:23 +01:00
|
|
|
</div>
|
|
|
|
|
2021-10-18 05:37:59 +02:00
|
|
|
@section PageFootContent {
|
|
|
|
<partial name="_ValidationScriptsPartial" />
|
|
|
|
<script>
|
2021-12-31 08:36:38 +01:00
|
|
|
document.addEventListener("DOMContentLoaded", function() {
|
2021-10-18 05:37:59 +02:00
|
|
|
$("#pay-invoices-form").on("submit", function() {
|
|
|
|
$(this).find("input[type='submit']").prop('disabled', true);
|
|
|
|
});
|
2021-12-31 08:36:38 +01:00
|
|
|
$("#pay-invoices-form input").on("input", function() {
|
2021-10-18 05:37:59 +02:00
|
|
|
// Give it a timeout to make sure all form validation has completed by the time we run our callback
|
|
|
|
setTimeout(function() {
|
|
|
|
var validationErrors = $('.field-validation-error');
|
|
|
|
if (validationErrors.length === 0) {
|
|
|
|
$("input[type='submit']#Create").removeAttr('disabled');
|
|
|
|
}
|
|
|
|
}, 100);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
}
|