btcpayserver/BTCPayServer/Views/Stores/PayButtonEnable.cshtml

23 lines
832 B
Text
Raw Normal View History

@{
Layout = "../Shared/_NavLayout.cshtml";
ViewData.SetActivePageAndTitle(StoreNavPages.PayButton, "Please confirm you want to enable Pay Button");
ViewBag.MainTitle = "Pay Button";
}
<h4>@ViewData["Title"]</h4>
<div class="row">
<div class="col-md-10">
<form method="post">
<div class="form-group">
<p>
To start using Pay Buttons you need to explicitly turn on this feature.
Once you do so, valid POST requests from any source will allow creation of Invoices on your instance of BtcPayServer.
</p>
@Html.Hidden("EnableStore", true)
<button name="command" type="submit" value="save" class="btn btn-primary">Enable Pay Button</button>
</div>
</form>
</div>
</div>