{% extends 'form.inc.html' %} {% block fields %}
A bit about you {% for field in form.visible_fields %} {% ifnotequal field.name 'DELETE' %} {% if field.name == 'username' %} Logging in {% elif field.name == 'plan' %}
Billing info {% if selected_plan.trial_months > 0 %}

You’ll need to provide your billing details in the next step so that, once your free trial period is over, unless you choose to cancel, your account will be automatically billed.

{% endif %} {% elif not form.plan and field.name == 'period' %}
Billing info {% if selected_plan.trial_months > 0 %}

You’ll need to provide your billing details in the next step so that, once your free trial period is over, unless you choose to cancel, your account will be automatically billed.

{% endif %} {% elif field.name == 'newsletter_optin' %}
Newsletter{% if form.terms %} and terms{% else %} opt-in{% endif %} {% elif field.name == 'challenge' %}
Are you human?

Sorry we have to check.

{% endif %} {% include 'field.inc.html' %} {% endifnotequal %} {% endfor %}
{% endblock fields %}