2022-07-15 05:38:33 +02:00
@using BTCPayServer.Abstractions.Models
2022-10-17 12:16:29 +02:00
@using BTCPayServer.TagHelpers
@using Microsoft.AspNetCore.Mvc.TagHelpers
@using BTCPayServer.Abstractions.Contracts
2023-09-11 02:59:17 +02:00
@using BTCPayServer.Client
2022-10-17 12:16:29 +02:00
@inject IFileService FileService;
2021-10-29 08:25:43 +02:00
@model GeneralSettingsViewModel
@{
2024-10-25 15:48:53 +02:00
ViewData.SetActivePage(StoreNavPages.General, StringLocalizer["General"], Context.GetStoreData().Id);
2022-10-17 12:16:29 +02:00
var canUpload = await FileService.IsAvailable();
2021-10-29 08:25:43 +02:00
}
2024-06-19 15:23:10 +02:00
<form method="post" enctype="multipart/form-data" permissioned="@Policies.CanModifyStoreSettings">
<div class="sticky-header">
2024-07-25 22:46:02 +09:00
<h2 text-translate="true">Store Settings</h2>
2024-07-25 15:23:28 +09:00
<button id="page-primary" type="submit" class="btn btn-primary">Save</button>
2024-06-19 15:23:10 +02:00
</div>
<partial name="_StatusMessage" />
2021-10-29 08:25:43 +02:00
2024-06-19 15:23:10 +02:00
<div class="row">
<div class="col-xxl-constrain col-xl-8">
@if (!ViewContext.ModelState.IsValid)
{
2024-09-13 14:39:21 +02:00
<div asp-validation-summary="All" class="@(ViewContext.ModelState.ErrorCount.Equals(1) ? "no-marker" : "")"></div>
2024-06-19 15:23:10 +02:00
}
2021-10-29 08:25:43 +02:00
<div class="form-group">
<label asp-for="Id" class="form-label"></label>
<input asp-for="Id" readonly class="form-control" />
</div>
<div class="form-group">
<label asp-for="StoreName" class="form-label"></label>
<input asp-for="StoreName" class="form-control" />
<span asp-validation-for="StoreName" class="text-danger"></span>
</div>
<div class="form-group">
<label asp-for="StoreWebsite" class="form-label"></label>
<input asp-for="StoreWebsite" class="form-control" />
<span asp-validation-for="StoreWebsite" class="text-danger"></span>
</div>
2024-02-21 18:50:38 +01:00
2024-09-13 14:39:21 +02:00
<h3 class="mt-5 mb-3" text-translate="true">Branding</h3>
2024-10-25 15:48:53 +02:00
<p text-translate="true">The custom color, logo and CSS are applied on the public/customer-facing pages (Invoice, Payment Request, Pull Payment, etc.). The brand color is used as the accent color for buttons, links, etc. It might get adapted to fit the light/dark color scheme.</p>
2024-09-13 14:39:21 +02:00
<div>
2022-12-19 15:51:05 +01:00
<label asp-for="BrandColor" class="form-label"></label>
2024-09-13 14:39:21 +02:00
<div class="d-flex flex-wrap">
<div class="form-group me-4">
<div class="input-group">
<input id="BrandColorInput" class="form-control form-control-color flex-grow-0" type="color" style="width:3rem" aria-describedby="BrandColorValue" value="@Model.BrandColor" />
<input asp-for="BrandColor" class="form-control form-control-color flex-grow-0 font-monospace" pattern="@ColorPalette.Pattern" style="width:5.5rem;font-size:0.9rem" />
</div>
<span asp-validation-for="BrandColor" class="text-danger"></span>
</div>
<div class="form-group d-flex align-items-center">
<input asp-for="ApplyBrandColorToBackend" type="checkbox" class="btcpay-toggle me-3" disabled="@(string.IsNullOrEmpty(Model.BrandColor))"/>
<label asp-for="ApplyBrandColorToBackend" class="form-check-label"></label>
</div>
2022-12-19 15:51:05 +01:00
</div>
</div>
2024-09-13 14:39:21 +02:00
2022-10-17 12:16:29 +02:00
<div class="form-group">
2022-11-24 00:53:32 +01:00
<div class="d-flex align-items-center justify-content-between gap-2">
<label asp-for="LogoFile" class="form-label"></label>
2024-05-09 02:18:02 +02:00
@if (!string.IsNullOrEmpty(Model.LogoUrl))
2022-11-24 00:53:32 +01:00
{
<button type="submit" class="btn btn-link p-0 text-danger" name="RemoveLogoFile" value="true">
2024-05-20 01:57:46 +02:00
<vc:icon symbol="cross" /> Remove
2022-11-24 00:53:32 +01:00
</button>
}
</div>
2022-10-17 12:16:29 +02:00
@if (canUpload)
{
2022-11-24 00:53:32 +01:00
<div class="d-flex align-items-center gap-3">
2022-10-17 12:16:29 +02:00
<input asp-for="LogoFile" type="file" class="form-control flex-grow">
2024-05-09 02:18:02 +02:00
@if (!string.IsNullOrEmpty(Model.LogoUrl))
2022-10-17 12:16:29 +02:00
{
2024-05-09 02:18:02 +02:00
<img src="@Model.LogoUrl" alt="@Model.StoreName Logo" style="height:2.1rem;max-width:10.5rem;"/>
2022-10-17 12:16:29 +02:00
}
</div>
2022-11-24 00:53:32 +01:00
<span asp-validation-for="LogoFile" class="text-danger"></span>
2022-10-17 12:16:29 +02:00
}
else
{
<input asp-for="LogoFile" type="file" class="form-control" disabled>
2024-10-25 15:48:53 +02:00
<div class="form-text">@ViewLocalizer["In order to upload, a {0} must be configured.", Html.ActionLink(StringLocalizer["file storage"], "Files", "UIServer")]</div>
2022-10-17 12:16:29 +02:00
}
</div>
<div class="form-group">
2022-12-19 15:51:05 +01:00
<div class="d-flex align-items-center justify-content-between gap-2">
<label asp-for="CssFile" class="form-label"></label>
2024-05-09 02:18:02 +02:00
@if (!string.IsNullOrEmpty(Model.CssUrl))
2022-12-19 15:51:05 +01:00
{
<button type="submit" class="btn btn-link p-0 text-danger" name="RemoveCssFile" value="true">
2024-05-20 01:57:46 +02:00
<vc:icon symbol="cross" /> Remove
2022-12-19 15:51:05 +01:00
</button>
}
2022-10-17 12:16:29 +02:00
</div>
2022-12-19 15:51:05 +01:00
@if (canUpload)
{
<div class="d-flex align-items-center gap-3">
<input asp-for="CssFile" type="file" class="form-control flex-grow">
2024-05-09 02:18:02 +02:00
@if (!string.IsNullOrEmpty(Model.CssUrl))
2022-12-19 15:51:05 +01:00
{
2024-05-09 02:18:02 +02:00
<a href="@Model.CssUrl" target="_blank" rel="noreferrer noopener" class="text-nowrap">Custom CSS</a>
2022-12-19 15:51:05 +01:00
}
</div>
<span asp-validation-for="LogoFile" class="text-danger"></span>
}
else
{
<input asp-for="CssFile" type="file" class="form-control" disabled>
2024-10-25 15:48:53 +02:00
<div class="form-text">@ViewLocalizer["In order to upload, a {0} must be configured.", Html.ActionLink(StringLocalizer["file storage"], "Files", "UIServer")]</div>
2022-12-19 15:51:05 +01:00
}
2022-10-17 12:16:29 +02:00
</div>
2024-07-25 22:46:02 +09:00
<h3 class="mt-5 mb-3" text-translate="true">Payment</h3>
2022-01-20 12:52:31 +01:00
<div class="form-group">
<label asp-for="DefaultCurrency" class="form-label"></label>
2022-09-26 03:26:13 +02:00
<input asp-for="DefaultCurrency" class="form-control w-auto" currency-selection />
2022-01-20 12:52:31 +01:00
<span asp-validation-for="DefaultCurrency" class="text-danger"></span>
</div>
<div class="form-group mt-4">
<label asp-for="NetworkFeeMode" class="form-label"></label>
2024-10-25 15:48:53 +02:00
<a href="https://docs.btcpayserver.org/FAQ/Stores/#add-network-fee-to-invoice-vary-with-mining-fees" target="_blank" rel="noreferrer noopener" title="@StringLocalizer["More information..."]">
2023-02-13 00:25:24 -08:00
<vc:icon symbol="info"/>
2022-01-20 12:52:31 +01:00
</a>
2022-05-19 17:36:36 -07:00
@* For whatever reason wrapping the select with this div fixes this Safari bug: https://github.com/btcpayserver/btcpayserver/issues/3699 *@
<div class="overflow-hidden">
<select asp-for="NetworkFeeMode" class="form-select w-auto">
2024-10-03 19:21:19 +09:00
<option value="MultiplePaymentsOnly" text-translate="true">... only if the customer makes more than one payment for the invoice</option>
<option value="Always" text-translate="true">... on every payment</option>
<option value="Never" text-translate="true">Never add network fee</option>
2022-05-19 17:36:36 -07:00
</select>
</div>
2022-01-20 12:52:31 +01:00
</div>
<div class="form-group">
<label asp-for="InvoiceExpiration" class="form-label"></label>
2024-10-25 15:48:53 +02:00
<a href="https://docs.btcpayserver.org/FAQ/Stores/#invoice-expires-if-the-full-amount-has-not-been-paid-after-minutes" target="_blank" rel="noreferrer noopener" title="@StringLocalizer["More information..."]">
2023-02-13 00:25:24 -08:00
<vc:icon symbol="info"/>
2022-01-20 12:52:31 +01:00
</a>
<div class="input-group">
2023-07-22 14:15:41 +02:00
<input inputmode="numeric" asp-for="InvoiceExpiration" class="form-control" style="max-width:12ch;"/>
2024-10-17 15:51:40 +02:00
<span class="input-group-text" text-translate="true">minutes</span>
2022-01-20 12:52:31 +01:00
</div>
<span asp-validation-for="InvoiceExpiration" class="text-danger"></span>
</div>
<div class="form-group">
<label asp-for="PaymentTolerance" class="form-label"></label>
2024-10-25 15:48:53 +02:00
<a href="https://docs.btcpayserver.org/FAQ/Stores/#consider-the-invoice-paid-even-if-the-paid-amount-is-less-than-expected" target="_blank" rel="noreferrer noopener" title="@StringLocalizer["More information..."]">
2023-02-13 00:25:24 -08:00
<vc:icon symbol="info"/>
2022-01-20 12:52:31 +01:00
</a>
<div class="input-group">
2023-07-22 14:15:41 +02:00
<input inputmode="decimal" asp-for="PaymentTolerance" class="form-control" style="max-width:12ch;"/>
2024-10-17 15:51:40 +02:00
<span class="input-group-text" text-translate="true">percent</span>
2022-01-20 12:52:31 +01:00
</div>
<span asp-validation-for="PaymentTolerance" class="text-danger"></span>
</div>
<div class="form-group">
<label asp-for="BOLT11Expiration" class="form-label"></label>
<div class="input-group">
2023-07-22 14:15:41 +02:00
<input inputmode="numeric" asp-for="BOLT11Expiration" class="form-control" style="max-width:12ch;"/>
2024-10-17 15:51:40 +02:00
<span class="input-group-text" text-translate="true" text-translate="true">days</span>
2022-01-20 12:52:31 +01:00
</div>
<span asp-validation-for="BOLT11Expiration" class="text-danger"></span>
</div>
2024-09-30 12:13:51 +02:00
<div class="form-group">
<label asp-for="MonitoringExpiration" class="form-label"></label>
2024-10-25 15:48:53 +02:00
<a href="https://docs.btcpayserver.org/FAQ/Stores/#payment-invalid-if-transactions-fails-to-confirm-minutes-after-invoice-expiration" target="_blank" rel="noreferrer noopener" title="@StringLocalizer["More information..."]">
2024-09-30 12:13:51 +02:00
<vc:icon symbol="info"/>
</a>
<div class="input-group">
<input inputmode="numeric" asp-for="MonitoringExpiration" class="form-control" style="max-width:10ch;"/>
2024-10-17 15:51:40 +02:00
<span class="input-group-text" text-translate="true">minutes</span>
2024-09-30 12:13:51 +02:00
</div>
<span asp-validation-for="MonitoringExpiration" class="text-danger"></span>
</div>
<div class="form-group">
<label asp-for="SpeedPolicy" class="form-label"></label>
2024-10-25 15:48:53 +02:00
<a href="https://docs.btcpayserver.org/FAQ/Stores/#consider-the-invoice-confirmed-when-the-payment-transaction" target="_blank" rel="noreferrer noopener" title="@StringLocalizer["More information..."]">
2024-09-30 12:13:51 +02:00
<vc:icon symbol="info"/>
</a>
<select asp-for="SpeedPolicy" class="form-select w-auto" onchange="document.getElementById('unconfirmed-warning').hidden = this.value !== '0'">
2024-10-03 19:21:19 +09:00
<option value="0" text-translate="true">Is unconfirmed</option>
<option value="1" text-translate="true">Has at least 1 confirmation</option>
<option value="3" text-translate="true">Has at least 2 confirmations</option>
<option value="2" text-translate="true">Has at least 6 confirmations</option>
2024-09-30 12:13:51 +02:00
</select>
<p class="info-note my-3 text-warning" id="unconfirmed-warning" role="alert" hidden="@(Model.SpeedPolicy != 0)">
<vc:icon symbol="warning"/>
2024-10-17 15:51:40 +02:00
<span text-translate="true">Choosing to accept an unconfirmed invoice can lead to double-spending and is strongly discouraged.</span>
2024-09-30 12:13:51 +02:00
</p>
<span asp-validation-for="SpeedPolicy" class="text-danger"></span>
</div>
<div class="form-group d-flex align-items-center">
<input asp-for="AnyoneCanCreateInvoice" type="checkbox" class="btcpay-toggle me-3"/>
<label asp-for="AnyoneCanCreateInvoice" class="form-check-label me-1"></label>
2024-10-25 15:48:53 +02:00
<a href="https://docs.btcpayserver.org/FAQ/Stores/#allow-anyone-to-create-invoice" target="_blank" rel="noreferrer noopener" title="@StringLocalizer["More information..."]">
2024-09-30 12:13:51 +02:00
<vc:icon symbol="info"/>
</a>
</div>
<div class="d-flex align-items-center my-3">
<input asp-for="ShowRecommendedFee" type="checkbox" class="btcpay-toggle me-3" />
<div>
<label asp-for="ShowRecommendedFee" class="form-check-label"></label>
2024-10-03 19:21:19 +09:00
<div class="form-text" text-translate="true">Fee will be shown for BTC and LTC onchain payments only.</div>
2024-09-30 12:13:51 +02:00
</div>
</div>
<div class="form-group">
<label asp-for="RecommendedFeeBlockTarget" class="form-label"></label>
<div class="input-group">
<input inputmode="numeric" asp-for="RecommendedFeeBlockTarget" class="form-control" min="1" style="max-width:10ch" />
2024-10-03 19:21:19 +09:00
<span class="input-group-text" text-translate="true">blocks</span>
2024-09-30 12:13:51 +02:00
</div>
<span asp-validation-for="RecommendedFeeBlockTarget" class="text-danger"></span>
</div>
2023-09-11 02:59:17 +02:00
</div>
2021-10-29 08:25:43 +02:00
</div>
2024-06-19 15:23:10 +02:00
</form>
<div permission="@Policies.CanModifyStoreSettings">
2024-07-25 22:46:02 +09:00
<h3 class="mt-5 mb-3" text-translate="true">Additional Actions</h3>
2024-06-19 15:23:10 +02:00
<div id="danger-zone" class="d-flex flex-wrap align-items-center gap-3 mb-5 mt-2">
<form asp-action="ToggleArchive" asp-route-storeId="@Model.Id" method="post">
<button type="submit" class="btn btn-outline-secondary" id="btn-archive-toggle">
@if (Model.Archived)
{
2024-10-25 15:48:53 +02:00
<span class="text-nowrap" data-bs-toggle="tooltip" title="@StringLocalizer["Unarchive this store"]" text-translate="true">Unarchive this store</span>
2024-06-19 15:23:10 +02:00
}
else
{
2024-10-25 15:48:53 +02:00
<span class="text-nowrap" data-bs-toggle="tooltip" title="@StringLocalizer["Archive this store so that it does not appear in the stores list by default"]" text-translate="true">Archive this store</span>
2024-06-19 15:23:10 +02:00
}
</button>
</form>
2024-10-25 15:48:53 +02:00
<a id="DeleteStore" class="btn btn-outline-danger" asp-action="DeleteStore" asp-route-storeId="@Model.Id" data-bs-toggle="modal" data-bs-target="#ConfirmModal" data-description="@ViewLocalizer["The store <strong>{0}</strong> will be permanently deleted. This action will also delete all invoices, apps and data associated with the store.", Html.Encode(Model.StoreName)]" data-confirm-input="@StringLocalizer["DELETE"]" text-translate="true">Delete this store</a>
2024-06-19 15:23:10 +02:00
</div>
2021-10-29 08:25:43 +02:00
</div>
2024-10-25 15:48:53 +02:00
<partial name="_Confirm" model="@(new ConfirmModel(StringLocalizer["Delete store"], StringLocalizer["The store will be permanently deleted. This action will also delete all invoices, apps and data associated with the store."], StringLocalizer["Delete"]))" permission="@Policies.CanModifyStoreSettings" />
2021-10-29 08:25:43 +02:00
@section PageFootContent {
2022-10-17 12:16:29 +02:00
<partial name="_ValidationScriptsPartial"/>
<script>
(() => {
const $colorValue = document.getElementById('BrandColor');
const $colorInput = document.getElementById('BrandColorInput');
2024-09-13 14:39:21 +02:00
const $applyToBackend = document.getElementById('ApplyBrandColorToBackend');
2022-10-17 12:16:29 +02:00
delegate('change', '#BrandColor', e => {
const value = e.target.value;
2024-09-13 14:39:21 +02:00
if (value.match(@Safe.Json(ColorPalette.Pattern)))
2022-10-17 12:16:29 +02:00
$colorInput.value = value;
2024-09-13 14:39:21 +02:00
$applyToBackend.disabled = !value;
2022-10-17 12:16:29 +02:00
});
delegate('change', '#BrandColorInput', e => {
2024-09-13 14:39:21 +02:00
const value = e.target.value;
$colorValue.value = value;
$applyToBackend.disabled = !value;
2022-10-17 12:16:29 +02:00
});
})();
</script>
2021-10-29 08:25:43 +02:00
}