12345678910111213141516171819 |
- {% extends "_base/_page-nav.twig" %}
- {% block page_title __('Squarepay Dashboard') %}
- {% block page_main %}
- <p>
- At the moment all this enables you to do is authorise this site to use Square Payments, but I may expand functionality in the future.
- </p>
- <br>
- <a href="{{ auth_link }}" class="btn btn-primary">Authorise Site</a>
- <a href="square/revoke-oauth-token" class="btn btn-danger" onclick="return confirm('Are you sure? This will disable the connection to Square.');">Revoke Access</a>
- <br><br>
- {{ dump(config) }}
- {% endblock %}
|