2018-09-03 23:48:53 -05:00
|
|
|
@{
|
|
|
|
Layout = "../Shared/_NavLayout.cshtml";
|
2021-04-08 15:32:42 +02:00
|
|
|
ViewData.SetActivePageAndTitle(StoreNavPages.PayButton, "Pay Button", Context.GetStoreData().StoreName);
|
2018-09-03 23:48:53 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-md-10">
|
2021-04-08 15:32:42 +02:00
|
|
|
<h4 class="mb-3">@ViewData["PageTitle"]</h4>
|
|
|
|
<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>
|
2018-09-03 23:48:53 -05:00
|
|
|
<form method="post">
|
2021-04-08 15:32:42 +02:00
|
|
|
@Html.Hidden("EnableStore", true)
|
|
|
|
<button name="command" type="submit" value="save" class="btn btn-primary">
|
|
|
|
Allow outside world to create invoices via API
|
|
|
|
</button>
|
2018-09-03 23:48:53 -05:00
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</div>
|