{% extends "base.html" %} {% block title %}System Settings — {{ branding.app_name }}{% endblock %} {% block content %} {% with messages = get_flashed_messages(with_categories=true) %} {% for cat, msg in messages %} {% endfor %} {% endwith %}
Branding & Appearance
{% if branding_settings.logo_stored_name %} Logo {% else %} {{ branding_settings.logo_initials[:2] }} {% endif %}
{% if branding_settings.logo_stored_name %}
{% endif %}
Shown in the sidebar and browser tab.
Shown below the app name in the sidebar.
Shown on the login and register pages.
Fallback when no logo is uploaded.
Accent colour across the interface.
User Registration

When disabled, the /auth/register endpoint redirects all visitors to the login page. Existing accounts and admin-created accounts are unaffected.

Allow Self-Registration
Permits new employees to create their own accounts via the Register page.
{{ 'Enabled' if registration_enabled else 'Disabled' }} {% if registration_enabled %} {% else %} {% endif %}
{% endblock %}