18 lines
787 B
HTML
18 lines
787 B
HTML
{% extends "base.html" %}
|
|
{% block title %}{{ _('Payment successful') }}{% endblock %}
|
|
{% block content %}
|
|
<div class="card narrow" style="text-align:center;padding:48px 24px">
|
|
<div style="font-size:48px">✅</div>
|
|
<h2>{{ _('Payment successful!') }}</h2>
|
|
{% if mode == 'subscription' %}
|
|
<p>{{ _('Your subscription is now active. Enjoy your upgraded plan!') }}</p>
|
|
<a class="btn" href="{{ url_for('payments.my_billing') }}">{{ _('View billing') }}</a>
|
|
{% else %}
|
|
<p>{{ _('Your boost is now live on your listing.') }}</p>
|
|
<a class="btn" href="{{ url_for('listings.detail', listing_id=listing_id) }}">{{ _('View listing') }}</a>
|
|
{% endif %}
|
|
<br><br>
|
|
<a href="{{ url_for('listings.mine') }}" class="muted small">{{ _('My listings') }}</a>
|
|
</div>
|
|
{% endblock %}
|