Updated Payout processor Label for setting interval (#3698)

This commit is contained in:
B 2022-05-04 10:34:31 +02:00 committed by GitHub
parent aa89d1dffe
commit e5feda69c8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View file

@ -11,14 +11,14 @@
<div class="d-flex align-items-center justify-content-between mb-3">
<h3 class="mb-0">@ViewData["Title"]</h3>
</div>
<p>Payout Processors allow BTCPay Server to handle payouts awaiting payment in an automated way.</p>
<p>Set a schedule for automated Lightning Network Payouts.</p>
@if (!ViewContext.ModelState.IsValid)
{
<div asp-validation-summary="All" class="text-danger"></div>
}
<form method="post">
<div class="form-group">
<label asp-for="IntervalMinutes" class="form-label"></label>
<label asp-for="IntervalMinutes" class="form-label">Set interval in minutes.</label>
<input asp-for="IntervalMinutes" class="form-control">
</div>

View file

@ -11,14 +11,14 @@
<div class="d-flex align-items-center justify-content-between mb-3">
<h3 class="mb-0">@ViewData["Title"]</h3>
</div>
<p>Payout Processors allow BTCPay Server to handle payouts awaiting payment in an automated way.</p>
<p>Set a schedule for automated On-Chain Bitcoin Payouts. </p>
@if (!ViewContext.ModelState.IsValid)
{
<div asp-validation-summary="All" class="text-danger"></div>
}
<form method="post">
<div class="form-group">
<label asp-for="IntervalMinutes" class="form-label"></label>
<label asp-for="IntervalMinutes" class="form-label">Set interval in minutes.</label>
<input asp-for="IntervalMinutes" class="form-control">
</div>