{% extends "shared/base.html" %} {% block title %}Settings - YumeZone{% endblock %} {% block meta_description %}Manage your YumeZone account settings, playback preferences, and appearance.{% endblock %} {% block og_title %}{{ self.title() }}{% endblock %} {% block og_description %}{{ self.meta_description() }}{% endblock %} {% block og_image %}{{ url_for('static', filename='images/logos/no-bg-logo.png', _external=True) }}{% endblock %} {% block content %}

Settings

Account

Username {{ user.username }}
Email {{ user.email or 'Not set' }}
Member Since {{ user.created_at.strftime('%B %d, %Y') if user.created_at else 'Unknown' }}
{% if user.auth_method == 'local' or not user.auth_method %}
Password Update your account password
{% endif %}

AniList Connection

{% if user.anilist_authenticated %}
{% if user.avatar %} AniList avatar {% else %} Avatar {% endif %}
Connected
AniList ID: {{ user.anilist_id }}
{% else %}
🔗

Connect Your AniList

Sync your anime list with AniList to track progress across platforms.

Connect
{% endif %}

MyAnimeList

{% if user.mal_authenticated %}
{% if user.mal_avatar or session.get('mal_avatar') %} MAL Avatar {% else %} MAL {% endif %}
Connected
MyAnimeList: {{ user.mal_username }}
{% else %}
MAL

Connect MyAnimeList

Sync your anime list with MyAnimeList to track progress across platforms.

Connect
{% endif %}

Playback

Preferred Language Default audio language for episodes
Autoplay Next Episode Automatically play the next episode
Player Source Choose your preferred video player
MyAnimeList Sync Automatically track watched episodes to MyAnimeList at 80% progress

Appearance

Show Episode Titles Display episode titles in lists (may contain spoilers)

Manga

Hide NSFW Manga Hide 18+ manga content from search and browse results

Danger Zone

Delete Account Completely and permanently delete your YumeZone account and all associated data
{% endblock %} {% block extra_js %} {% endblock %}