{% extends "settings.html" %} {% block pagetitle %}Personal Settings - {{SITE_NAME}}{% endblock %} {% import 'settings_common.html' as common with context %} {# common sections start #} {% macro color_section(id, form_action, form_name, section_title, current_color) %}
{% for themecolor in COLORS %} {% endfor %}

Or type a color hex code:

{% endmacro %} {% macro line_text_section(id, form_action, form_name, section_title, contents, below_text, placeholder_text, button_text, show_marseys, minlength, maxlength, pattern, show_if) %} {% if show_if -%}
{{below_text}} {% if show_marseys %}
{% endif %}
{%- endif %} {% endmacro %} {% macro text_area_section(id, form_action, form_name, section_title, contents, below_text, placeholder_text, show_extras, show_file_upload, maxlength, show_if) %} {% if show_if -%}
{% if show_extras %}
    {% if show_file_upload and request.headers.get('cf-ipcountry') != "T1" %} {% endif %}
{% endif %}
{{below_text}}
{%- endif %} {% endmacro %} {# common sections end #} {% block content %}
Site Experience
You are a {{v.patron}}. Example text until me carp and sneks figure out what to put here. Dude bussy lmao
{# theme #} {{color_section('theme-color', '/settings/themecolor', 'themecolor', 'Theme Color', v.themecolor)}}

Change the background for the website.

{% if v.background %}
{% endif %}
Your Aesthetic
{% if FEATURES['HOUSES'] %}
{% if v.house %} {% set cost = HOUSE_SWITCH_COST %}

Change your house (cost: {{cost}} coins or marseybux).

{% if ' Founder' in v.house %}

Warning: you'll lose your founder status if you join a different house

{% endif %} {% else %} {% set cost = HOUSE_JOIN_COST %}

Join a house (cost: {{cost}} coins or marseybux).

{% endif %}
{%- endif %}
your profile picture
All image files are supported. Max file size is {% if v and v.patron %}16{% else %}8{% endif %} MB.
{% if FEATURES['USERS_PROFILE_BANNER'] -%}
All image files are supported. Max file size is {% if v and v.patron %}16{% else %}8{% endif %} MB.
{%- endif %}

Your original username will always stay reserved for you: {{v.original_username}}

3-25 characters, including letters, numbers, _ , and -
{{color_section('namecolor', '/settings/namecolor', 'namecolor', 'Name Color', v.name_color)}} {{line_text_section('pronouns', '/settings/pronouns_change', 'pronouns', 'Pronouns', v.pronouns, '{2-5 characters} / {2-5 characters}', 'Enter pronouns here', 'Change Pronouns', false, 3, 11, '([a-zA-Z]{1,5})/[a-zA-Z]{1,5}(/[a-zA-Z]{1,5})?', FEATURES['PRONOUNS'])}} {# line_text_section(id, form_action, form_name, section_title, contents, below_text, placeholder_text, button_text, show_marseys, minlength, maxlength, pattern, show_if) #} {{line_text_section('flair', '/settings/title_change', 'custom-flair', 'Flair', v.customtitleplain, 'Limit of 100 characters', 'Enter a flair here', 'Change Flair', true, 0, 100, '', true)}} {{color_section('flaircolor', '/settings/titlecolor', 'titlecolor', 'Flair Color', v.titlecolor)}} {% if v.verified %} {{color_section('verifiedcolor', '/settings/verifiedcolor', 'Checkmark Color', v.verifiedcolor)}} {{line_text_section('checkmark_text', '/settings/checkmark_text', 'checkmark-text', 'Checkmark Text', v.verified, 'Limit of 100 characters', 'Enter checkmark hover text here', 'Change Text', false, 0, 100, '', v.verified)}} {% endif %} {% if FEATURES['USERS_PROFILE_SONG'] -%}

You can use an MP3 file or a YouTube video.


In some browsers, users have to click at least once anywhere in the profile page for the anthem to play.
{%- endif %} {{text_area_section('profile-bio', '/settings/profile', 'bio', 'Limit of 1500 characters', 'Tell the community a bit about yourself.', true, true, 1500, FEATURES['USERS_PROFILE_BODYTEXT'])}} {{text_area_section('profile-friends', '/settings/profile', 'friends', 'Limit of 500 characters', 'Enter your friends on the site...', false, false, 500, true)}} {{text_area_section('profile-enemies', '/settings/profile', 'enemies', 'Limit of 500 characters', 'Enter your enemies on the site...', false, false, 500, true)}} {{text_area_section('profile-signature', '/settings/profile', 'sig', 'Limit of 200 characters', 'Enter a signature...', true, false, 200, v.patron or v.sig)}} {{common.toggle_section('Private Mode', 'privateswitch', 'private', v.is_private, 'This will hide your post and comment history from others. We will also ask search engines to not index your profile page. (Your content will still be accessible via direct link.)')}} {{common.toggle_section('Spider', 'spiderswitch', 'spider', v.spider, 'Have a spider friend accompany you during your journey on the site.')}}
Filters
{# profanity filter toggle (and lock?) #} {# slur filter toggle (and lock?) #}
Refer a Friend!
{{v.referral_count}}
Share this link with a friend. {% if v.referral_count==0 %} When they sign up, you'll get the bronze recruitment badge. Learn more.{% elif v.referral_count<10 %} When you refer 10 friends, you'll receive the silver recruitment badge. Learn more.{% elif v.referral_count<100 %} When you refer 100 friends, you'll receive the gold recruitment badge. Learn more.{% endif %}
{% include "emoji_modal.html" %} {% include "gif_modal.html" %} {% if v.flairchanged %} {% endif %} {% endblock %}