{% extends "shared/base.html" %} {% block title %}Settings - AniCove{% endblock %} {% block meta_description %}Manage your AniCove 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 %}
MAL
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
Skip Intro/Outro Automatically skip intro and outro when available
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)

Content

Show 18+ Anime Show adult anime content in search and browse results
Hide NSFW Manga Hide 18+ manga content from search and browse results

Danger Zone

Clear Watch History Remove all watch progress data
{% endblock %} {% block extra_js %} {% endblock %}