braintree_cashier-8.x-4.x-dev/templates/braintree-cashier-thank-you-with-trial.html.twig
templates/braintree-cashier-thank-you-with-trial.html.twig
{#
/**
* @file braintree-cashier-thank-you-with-trial.html.twig
* Default theme implementation for free trial thank you page.
*
* @ingroup themeable
*/
#}
<div{{ attributes.addClass('thank-you-with-trial') }}>
<p>{{ username }}, thank you very much for joining us!</p>
<ul>
<li>Your free trial has started! You will be <b>automatically billed</b> {{ next_billing_period_amount }} up to 6 hours before the beginning of
{{ next_billing_date }}.</li>
<li>If you cancel before billing begins, you will not be charged anything.</li>
<li>After billing begins, you will pay {{ next_billing_period_amount }}
{% if number_of_billing_cycles == 1 %}
only once.
{% else %}
{% trans %}
every month
{% plural billing_frequency %}
every {{ billing_frequency }} months
{% endtrans %}
{% endif %}
{% if never_expires %}
until you cancel your subscription.
{% else %}
for {{ number_of_billing_periods }} billing periods.
{% endif %}
</li>
<li>Please visit the <a href="{{ subscription_tab_url }}">Subscription</a> tab after clicking <a href="/user">My Account</a> to manage
your subscription and to stop the automated billing.</li>
</ul>
</div>
