{% extends 'layouts/app.html' %} {% block title %}Account settings{% endblock %} {% block body %}

Settings

{{ current_user.email }}
Update email and password Update language {% if current_user.username %} Your username is {{ current_user.username }} {% else %} Pick a username {% endif %}

Betting

You have {{ current_user.coins }} coins
Buy more coins
{% if current_user.subscription %}

{{ current_user.subscription.plan | title }} subscription

{{ current_user.credit_card.brand }} {{ current_user.credit_card.last4 }} ({{ current_user.credit_card.exp_date.strftime('%m/%Y') }})
{% else %}

Subscribe today

Hey buddy, why aren't you subscribed?

Now that you've created an account, wouldn't it be unbelievably amazing to unlock everything by becoming a subscriber today?

Learn more {% if current_user.invoices %}

Previous subscription info

{% endif %} {% endif %}
{% endblock %}