{% extends "base.html" %} {% block title %}Account - VidAI{% endblock %} {% block head %} {% endblock %} {% block content %}

Profile Picture

Current Avatar

Upload a new profile picture or use Gravatar.

Supported formats: JPG, PNG, GIF. Max size: 2MB.

{% if user.get('avatar') %}
{% endif %}

Gravatar

If you don't upload a custom avatar, your Gravatar (based on your email) will be used automatically.

Manage your Gravatar
{% 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 %}