{% extends "admin-layout.html" %} {% block title %}Create User - {% endblock %} {% block content %} {% if logged_in %}
{% else %}
{% endif %}

User Created

A user has been successfully generated. You need to copy this information into the users section of
config/plugins/bauncms/baun-admin/admin.php:

return [

    ...

    'users' => [
        '{{ user.email }}' => [
            'email' => '{{ user.email }}',
            'password' => '{{ user.password }}',
            'role' => 'admin'
        ]
    ]

];
{% if not logged_in %}

Once this has been completed you can continue.

Continue {% endif %} {% if logged_in %}
{% endif %}
{% endblock %}