50 lines
2.4 KiB
HTML
50 lines
2.4 KiB
HTML
{% extends "base.html" %}
|
|
{% load i18n static %}
|
|
{% block content %}
|
|
<main class="main">
|
|
<section class="py-4">
|
|
<div class="container d-flex justify-content-between align-items-center">
|
|
<h1 class="h3 mb-0 text-body-emphasis">{% trans "Payment Failed" %}</h1>
|
|
<nav aria-label="breadcrumb">
|
|
<ol class="breadcrumb mb-0">
|
|
<li class="breadcrumb-item">
|
|
<a href="{% url 'home' %}">{% trans "Home" %}</a>
|
|
</li>
|
|
<li class="breadcrumb-item active" aria-current="page">{% trans "Payment Failed" %}</li>
|
|
</ol>
|
|
</nav>
|
|
</div>
|
|
</section>
|
|
|
|
<section class="d-flex align-items-center justify-content-center py-5">
|
|
<div class="container text-center" style="max-width: 32rem;">
|
|
<div class="card p-5 shadow-sm border-0 rounded-4" data-aos="fade-up">
|
|
<div class="card-body p-0">
|
|
<div class="mb-4">
|
|
<i class="bi bi-x-circle-fill text-danger" style="font-size: 5rem;"></i>
|
|
</div>
|
|
|
|
<h2 class="mt-4 mb-3 text-body-emphasis fw-bold">{% trans "Payment Failed" %}</h2>
|
|
|
|
{% if message %}
|
|
<p class="lead text-body-secondary">{{ message }}.</p>
|
|
{% else %}
|
|
<p class="lead text-body-secondary">
|
|
{% trans "We couldn't process your payment. Please review your information and try again." %}
|
|
</p>
|
|
{% endif %}
|
|
|
|
<div class="d-grid gap-3 col-md-8 mx-auto mt-4">
|
|
<a href="{% url 'pricing_page' request.dealer.slug %}" class="btn btn-danger btn-lg rounded-pill">
|
|
{% trans "Go Back and Try Again" %}
|
|
</a>
|
|
<a href="{% url 'home' %}" class="btn btn-link text-body-secondary text-decoration-none">
|
|
{% trans "Back to Home" %}
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
</main>
|
|
{% endblock content %} |