mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-20 02:28:31 +01:00
c62018f984
* adds pay button icon adds more update icons * reduces update app titles * capitalize PP * more icons notification icon update adds more * Truncate long titles in nav * Adjust "off" color state for the wallet/lightning * Theme switch alignment * Update store selector * adds more space in store selector span * Prevent form zoom on mobile Safari * updates lightning + settings view * updates store icon * adjusts notification icon * removes notifications setting button icon * Update status colors * Fix Lightning nav markup * Prevent icons from shrinking * Move main menu styles to css * Remove max-width container for content area * Update headlines * Use fixed header on mobile * Extract custom pills component * Form field update Co-authored-by: Dennis Reimann <mail@dennisreimann.de>
47 lines
2.0 KiB
Plaintext
47 lines
2.0 KiB
Plaintext
@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 data-bs-toggle="tooltip" class="text-break" title="@item.Destination">@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 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>
|
|
</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>
|
|
}
|