Jake Vanderwerf
2026-04-26 5697a1c3af703f04902c0422c0536c88899ebb27
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?php
// /users/client.php
function aei_user_client():array
{
    return [
        'label'            => 'Client',
        'has_dashboard'    => true,
        'can_create'       => [''],
        'can_register'     => true,
        'keep_stats'       => false,
        'icon'             => 'user',
        'register'          => [
            'text'      => 'Refer your friends. Get rewarded.',
            'title'     => 'Create Your Account',
            'description'   => [
                'Get your unique share code',
                'Share it with your friends',
                'Get notified when you get your credit'
            ],
            'submit'    => 'Create Your Account',
        ],
    ];
}