{% extends 'payments/payment_base.html' %} {% block payment_content %} {% if config.PAYMENT_PRODUCTION != True %} {% endif %}
{{ form.hidden_tag() }}
{% if currency == 'usd' %} $ {% elif currency == 'eur' %} € {% endif %} {{ form.amount(id="input-amount", class="form-control") | safe }}
{{ form.invoice_number(id="input-invoice-number", class="form-control", placeholder=_('Invoice number')) | safe }}

{{ _('The personal information provided to the MetaBrainz Foundation during the payment process will not be shared with anyone. For more information, please take a look at our privacy policy.', privacy_policy_url=url_for('index.privacy_policy')) }}

{{ _('To find out how to cancel recurring payments take a look at this page.', cancel_recurring_url=url_for('payments.cancel_recurring')) }}

{% endblock %} {% block scripts %} {{ super() }} {% endblock %}