mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-23 06:35:13 +01:00
45 lines
2 KiB
Text
45 lines
2 KiB
Text
@model System.Collections.Generic.List<BTCPayServer.Data.Payouts.LightningLike.UILightningLikePayoutController.ConfirmVM>
|
|
@{
|
|
Layout = "../Shared/_Layout.cshtml";
|
|
ViewData["Title"] = "Confirm Lightning Payout";
|
|
var cryptoCode = Context.GetRouteValue("cryptoCode");
|
|
}
|
|
|
|
<h2 class="mt-1 mb-4">@ViewData["Title"]</h2>
|
|
<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 class="text-break" style="max-width:60em;">@item.Destination</div>
|
|
<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 px-5" id="Pay">Pay</button>
|
|
<a asp-controller="UIStorePullPayments" asp-action="Payouts" asp-route-storeId="@Context.GetStoreData().Id" class="btn btn-secondary mx-2 px-4">Cancel</a>
|
|
</form>
|
|
}
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
|
|
@section PageFootContent {
|
|
<partial name="_ValidationScriptsPartial" />
|
|
<script>
|
|
document.addEventListener("DOMContentLoaded", function() {
|
|
$("#pay-invoices-form").on("submit", function() {
|
|
$(this).find("input[type='submit']").prop('disabled', true);
|
|
});
|
|
$("#pay-invoices-form input").on("input", function() {
|
|
// 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>
|
|
}
|