{% extends "base.html" %} {% block title %}User Profile - Flask Files{% endblock %} {% block extra_css %} {% endblock %} {% block content %}

User Profile

Theme:

Files

{{ current_user.files.filter_by(is_folder=False).count() }}

Folders

{{ current_user.files.filter_by(is_folder=True).count() }}

Shares

{{ current_user.shares.count() if hasattr(current_user, 'shares') else 0 }}

Member Since

{{ current_user.created_at.strftime('%b %d, %Y') }}

Account Information

Change Password

Appearance

File View

Notifications

Email Notifications
Receive email notifications about file shares and new comments

Privacy

Public Profile
Allow others to see your profile and shared files
Share Statistics
Collect anonymous usage statistics to improve the service

Danger Zone

These actions are permanent and cannot be undone

{% endblock %} {% block scripts %} {% endblock %}