btcpayserver/BTCPayServer/Views/Stores/PayButtonEnable.cshtml
Pavlenex 1c440ed36c
Update Maintenance.cshtml (#2576)
* Update Maintenance.cshtml

* fix BTCPay Server maintenance error

* Rephrase "derivation settings" to "wallet settings"

* Pay button text fix

* rephrase CoinSwitch description
2021-06-17 19:40:08 +09:00

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>