analytics/lib/plausible_web/templates/billing/upgrade_success.html.eex
2021-03-15 11:40:53 +02:00

19 lines
666 B
Elixir

<div class="w-full max-w-lg px-4 mt-4 mx-auto">
<div x-data="{volume: '10k', billingCycle: 'monthly'}" class="flex-1 bg-white dark:bg-gray-800 shadow-md rounded px-8 py-4 mb-4 mt-8">
<div class="w-full pt-2 text-xl font-bold dark:text-gray-100">
Subscription created successfully
</div>
<div class="w-full text-gray-500 dark:text-gray-200 text-sm py-4">
Thank you for upgrading your subscription. You will be redirected to your
account within 5 seconds.
</div>
<div class="loading my-12 mx-auto"><div></div></div>
<script>
setTimeout(function() {window.location='/settings'}, 3500);
</script>
</div>
</div>