btcpayserver/BTCPayServer/Views/Stores/PayButtonEnable.cshtml

25 lines
1,009 B
Text
Raw Normal View History

@{
Layout = "../Shared/_NavLayout.cshtml";
2018-12-13 12:26:30 +01:00
ViewData.SetActivePageAndTitle(StoreNavPages.PayButton, "Please confirm you want to allow outside world to create invoices in your store (via API).");
ViewBag.MainTitle = "Pay Button";
}
<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.
2018-12-13 12:26:30 +01:00
Once you do so, any 3rd party entity will be able to create an invoice on your instance store (via API for example).
2020-07-22 15:29:24 +02:00
The POS app is preauthorised and does not need this enabled.
</p>
@Html.Hidden("EnableStore", true)
2020-07-22 15:29:24 +02:00
<button name="command" type="submit" value="save" class="btn btn-lg btn-primary px-4">
Allow outside world to create invoices via API
</button>
</div>
</form>
</div>
</div>