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

Connect Spotify Account

Spotify Connection Status

{% if current_user.spotify_token %}

Connected to Spotify

Your account is linked to Spotify

{% if spotify_user_info %}

Spotify ID: {{ spotify_user_info.id }}

Display Name: {{ spotify_user_info.display_name }}

{% if spotify_user_info.email %}

Email: {{ spotify_user_info.email }}

{% endif %} {% if spotify_user_info.images and spotify_user_info.images[0] %} Spotify Profile Image {% endif %} {% 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

{% 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 %}