HEX
Server: Apache
System: Linux server2.voipitup.com.au 4.18.0-553.104.1.lve.el8.x86_64 #1 SMP Tue Feb 10 20:07:30 UTC 2026 x86_64
User: posscale (1027)
PHP: 8.2.29
Disabled: exec,passthru,shell_exec,system
Upload Files
File: /home/posscale/subdomains/xibo/views/install-step4.twig
{% extends "base-install.twig" %}
{% import "forms.twig" as forms %}

{% block stepContent %}
    <div class="row">
        <div class="col-md-12">
            {% set themeName = theme.getThemeConfig("app_name") %}

            <form action="{{ urlFor("install", {step: 5}) }}" class="form-horizontal" method="post">

                {% set message %}{% trans %}{{ themeName }} needs an administrator user account to be the first user account that has access to the CMS. Please enter your chosen details below.{% endtrans %}{% endset %}
                {{ forms.message(message) }}

                {% set title %}{% trans "Admin Username" %}{% endset %}
                {% set helpText %}{% trans "Please enter a user name for the first administrator account." %}{% endset %}
                {{ forms.input("admin_username",  title, "", helpText) }}

                {% set title %}{% trans "Admin Password" %}{% endset %}
                {% set helpText %}{% trans "Please enter a password for this user. This user will have full access to the system" %}{% endset %}
                {{ forms.password("admin_password",  title, flash.db_admin_pass, helpText) }}

                {% set title %}{% trans "Next" %}{% endset %}
                {{ forms.button(title, "submit") }}
            </form>
        </div>
    </div>
{% endblock %}