{% extends 'layouts/app.html' %} {% import 'macros/form.html' as f with context %} {% import 'billing/macros/billing.html' as billing with context %} {% block title %}Ready to start winning?{% endblock %} {% block meta_description %}Sign up today to subscribe so you can begin to win points by guessing the outcome of dice rolls.{% endblock %} {% block heading %} {% if current_user.subscription %}

You're about to change plans

Your plan will change immediately after clicking 'Change plan'.
{% else %}

Ready to start winning?

You're a few clicks away from being able to play

{% endif %} {% endblock %} {% block body %} {% call f.form_tag('billing.update', class='text-center') %} {% if current_user.subscription %}
{{ form.coupon_code.label }} {{ f.field(form.coupon_code) }}
{% endif %}
{% call billing.plan(plans['0']) %} {% endcall %} {% call billing.plan(plans['1']) %} {% endcall %} {% call billing.plan(plans['2']) %} {% endcall %}
{% endcall %} {% endblock %}