{% extends "base.html" %} {% block title %}System Settings — TechDesk{% endblock %} {% block content %} {% with messages = get_flashed_messages(with_categories=true) %} {% for cat, msg in messages %} {% endfor %} {% endwith %}
User Registration

When disabled, the /auth/register endpoint redirects all visitors to the login page with an informational message. 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 %}