{% extends 'base.html' %} {% block title %}Connect Spotify - Quizzical Beats{% endblock %} {% block content %}

Connect Spotify Account

{% with messages = get_flashed_messages(with_categories=true) %} {% if messages %} {% for category, message in messages %}
{{ message }}
{% endfor %} {% endif %} {% endwith %}

Spotify Connection Status

{% if current_user.spotify_token %}

Connected to Spotify

Your account is linked to Spotify

{% if current_user.oauth_id %}

Spotify ID: {{ current_user.oauth_id }}

{% endif %}

Token Information

Token Status: {% if current_user.spotify_token_expiry and current_user.spotify_token_expiry > now %} Valid {% else %} Expired {% endif %}

{% if current_user.spotify_token_expiry %}

Expires: {{ current_user.spotify_token_expiry.strftime('%Y-%m-%d %H:%M:%S') }}

{% endif %}
{% else %}

Not Connected

Your account is not linked to Spotify

Connect with Spotify {% endif %}

Why Connect Spotify?

Connecting your Spotify account enhances your music quiz creation experience

Access Your Playlists

Import songs from your personal Spotify playlists

Search the Spotify Catalog

Find and import any track from Spotify's huge library

Trending Playlists

Access Spotify's official and trending playlists

Privacy Note

We only access your Spotify data to help you create music quizzes. We don't share your information or post to your account.

Back to Profile
{% endblock %}