{% extends "layout.html" %} {% block content %}

{% if is_initial_setup %} Welcome to {{ g.branding.app_name }} {% else %} Create New Company {% endif %}

{% if is_initial_setup %}

Let's Get Started!

Set up your company and create the first administrator account to begin using {{ g.branding.app_name }}.

{% elif is_super_admin %}

New Company Setup

Create a new company with its own administrator. This will be a separate organization within {{ g.branding.app_name }}.

{% else %}

Access Denied

You do not have permission to create new companies.

Return Home
{% set show_form = false %} {% endif %} {% if is_initial_setup or is_super_admin %} {% set show_form = true %} {% endif %} {% if show_form %}

Company Information

This will be displayed throughout the application

Administrator Account

Minimum 6 characters

Administrator Privileges

{% if is_initial_setup %} This account will have full access to manage users, teams, and projects within your company. {% else %} This administrator will have full control over the new company and its users, teams, and projects. {% endif %}

{% if is_super_admin %} Back to Dashboard {% endif %}
{% if is_initial_setup and existing_companies > 0 %}

Already have an account?

Go to Login
{% endif %} {% endif %}
{% endblock %}