mirror of
https://github.com/aljazceru/BTCPayServerPlugins.git
synced 2025-12-18 08:04:26 +01:00
29 lines
1.1 KiB
Plaintext
29 lines
1.1 KiB
Plaintext
@using BTCPayServer.Abstractions.Extensions
|
|
@using Microsoft.AspNetCore.Mvc.TagHelpers
|
|
@model BTCPayServer.Plugins.FixedFloat.UpdateFixedFloatSettingsViewModel
|
|
@{
|
|
ViewData.SetActivePage("FixedFloat", "FixedFloat", "FixedFloat");
|
|
}
|
|
|
|
<partial name="_StatusMessage" />
|
|
|
|
<h2 class="mb-4">@ViewData["Title"]</h2>
|
|
|
|
<div class="alert alert-warning mb-4" role="alert">
|
|
If you are enabling FixedFloat support, we advise that you configure the invoice expiration to a minimum of 30 minutes as it may take longer than the default 15 minutes to convert the funds.
|
|
</div>
|
|
|
|
<div class="row">
|
|
<div class="col-md-10">
|
|
<form method="post">
|
|
<div class="form-group">
|
|
<div class="d-flex align-items-center">
|
|
<input asp-for="Enabled" type="checkbox" class="btcpay-toggle me-2"/>
|
|
<label asp-for="Enabled" class="form-label mb-0 me-1"></label>
|
|
</div>
|
|
</div>
|
|
<button name="command" type="submit" value="save" class="btn btn-primary">Submit</button>
|
|
</form>
|
|
</div>
|
|
</div>
|