seitime-frappe/frappe/templates/pages/integrations/payment-cancel.html
2018-07-10 16:10:08 +05:30

22 lines
562 B
HTML

{% extends "templates/web.html" %}
{% block title %}{{ _("Payment Cancelled") }}{% endblock %}
{%- block page_content -%}
<div class='page-card'>
<div class='page-card-head'>
<span class='indicator red'>
{{ _("Payment Cancelled") }}</span>
</div>
<p>{{ _("Your payment is cancelled.") }}</p>
<div><a href='{{ frappe.form_dict.redirect_to or "/" }}' class='btn btn-primary btn-sm'>
{{ _("Continue") }}</a></div>
</div>
<style>
.hero-and-content {
background-color: #f5f7fa;
}
{% include "templates/styles/card_style.css" %}
</style>
{% endblock %}