mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-20 10:40:29 +01:00
1c440ed36c
* Update Maintenance.cshtml * fix BTCPay Server maintenance error * Rephrase "derivation settings" to "wallet settings" * Pay button text fix * rephrase CoinSwitch description
21 lines
707 B
Plaintext
21 lines
707 B
Plaintext
@{
|
|
Layout = "../Shared/_NavLayout.cshtml";
|
|
ViewData.SetActivePageAndTitle(StoreNavPages.PayButton, "Pay Button", Context.GetStoreData().StoreName);
|
|
}
|
|
|
|
<div class="row">
|
|
<div class="col-md-10">
|
|
<h4 class="mb-3">@ViewData["PageTitle"]</h4>
|
|
<p>
|
|
To start using Pay Button, you need to enable this feature explicitly.
|
|
Once you do so, anyone could create an invoice on your store (via API, for example).
|
|
</p>
|
|
<form method="post">
|
|
@Html.Hidden("EnableStore", true)
|
|
<button name="command" type="submit" value="save" class="btn btn-primary">
|
|
Enable
|
|
</button>
|
|
</form>
|
|
</div>
|
|
</div>
|