mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-20 10:40:29 +01:00
9607e0e55d
* Update PayButtonEnable.cshtml Edit PayButton Title * Update BTCPayServer/Views/Stores/PayButtonEnable.cshtml Co-authored-by: Dennis Reimann <mail@dennisreimann.de> * Apply suggestions from code review Co-authored-by: Andrew Camilleri <evilkukka@gmail.com> Co-authored-by: Dennis Reimann <mail@dennisreimann.de>
24 lines
891 B
Plaintext
24 lines
891 B
Plaintext
@{
|
|
Layout = "../Shared/_NavLayout.cshtml";
|
|
ViewData.SetActivePageAndTitle(StoreNavPages.PayButton, "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.
|
|
Once you do so, any 3rd party entity will be able to create an invoice on your instance store (via API for example).
|
|
The POS app is preauthorised and does not need this enabled.
|
|
</p>
|
|
@Html.Hidden("EnableStore", true)
|
|
<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>
|