diff --git a/myproject/myapp/templates/payment_cancelled.html b/myproject/myapp/templates/payment_cancelled.html new file mode 100644 index 0000000000000000000000000000000000000000..a4793ade698d0177454789050a8da0547d28127d --- /dev/null +++ b/myproject/myapp/templates/payment_cancelled.html @@ -0,0 +1,5 @@ +{% extends "_base.html" %}{% block content %} +<h1>Payment Cancelled</h1> +<p>Your payment has been cancelled.</p> +<button><a href="{% url 'pricing' %}">Return</a></button> +{% endblock content%} diff --git a/myproject/myapp/templates/payment_success.html b/myproject/myapp/templates/payment_success.html new file mode 100644 index 0000000000000000000000000000000000000000..75ce641f7ab076493b7c70e70c9b2072d26d60d0 --- /dev/null +++ b/myproject/myapp/templates/payment_success.html @@ -0,0 +1,5 @@ +{% extends "_base.html" %}{% block content %} +<h1>Success!</h1> +<p>Your payment was successful and you have been credited with 1 token.</p> +<button><a href="{% url 'users' %}">Return</a></button> +{% endblock content%}