2018-09-03 23:48:53 -05:00
@{
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).");
2018-09-04 00:00:20 -05:00
ViewBag.MainTitle = "Pay Button";
2018-09-03 23:48:53 -05:00
}
<div class="row">
<div class="col-md-10">
<form method="post">
<div class="form-group">
<p>
2018-09-04 00:00:20 -05:00
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).
2018-09-03 23:48:53 -05:00
</p>
2018-09-04 00:00:20 -05:00
@Html.Hidden("EnableStore", true)
2018-12-13 12:26:30 +01:00
<button name="command" type="submit" value="save" class="btn btn-primary">Allow outside world to create invoices via API (POS app is preauthorised and does not need this enabled).</button>
2018-09-03 23:48:53 -05:00
</div>
</form>
</div>
</div>