{% extends "base.html" %} {% block title %}Account - VidAI{% endblock %} {% block head %} {% endblock %} {% block content %}
{% if user.get('role') != 'admin' %}
{{ user.get('tokens', 0) }}
Available Tokens
{% endif %}

Change Password

{% with messages = get_flashed_messages(with_categories=true) %} {% if messages %} {% for category, message in messages %} {% if 'password' in message.lower() %}
{{ message }}
{% endif %} {% endfor %} {% endif %} {% endwith %}
{% if user.get('role') != 'admin' %}

Top Up Tokens

{% with messages = get_flashed_messages(with_categories=true) %} {% if messages %} {% for category, message in messages %} {% if 'token' in message.lower() or 'purchase' in message.lower() %}
{{ message }}
{% endif %} {% endfor %} {% endif %} {% endwith %}
Starter Pack
500
$4.99
Professional Pack
1,200
$9.99
Enterprise Pack
3,000
$19.99
Custom Amount
Calculated
Credit Card
PayPal
Cryptocurrency

Saved Payment Methods

Save your payment methods for faster checkout.

Add Card
Add PayPal
Add Crypto
{% endif %}
{% endblock %}