HEX
Server: Apache/2.4.41 (Ubuntu)
System: Linux ip-172-31-42-149 5.15.0-1084-aws #91~20.04.1-Ubuntu SMP Fri May 2 07:00:04 UTC 2025 aarch64
User: ubuntu (1000)
PHP: 7.4.33
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: /var/www/vhost/disk-apps/alq-cali.bikenow.co/resources/views/mails/user/new-client.blade.php
<!DOCTYPE html>
<html lang="es">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Creación cuenta usuario</title>
    <style>
        body {
            font-family: Arial, sans-serif;
            line-height: 1.5;
            color: #333;
        }

        .container {
            max-width: 600px;
            margin: 0 auto;
            padding: 20px;
            border: 1px solid #ddd;
            border-radius: 8px;
        }

        .header {
            text-align: center;
            margin-bottom: 20px;
        }

        .header img {
            max-width: 150px;
        }

        .content {
            font-size: 16px;
        }

        .footer {
            background-color: #f1f1f1;
            color: #333333;
            padding: 10px 20px;
            text-align: center;
            font-size: 12px;
        }

        .cta-button {
            display: inline-block;
            margin-top: 20px;
            padding: 10px 15px;
            background-color: #007bff;
            color: white;
            text-decoration: none;
            border-radius: 5px;
        }
    </style>
</head>

<body>
    <div class="container">
        <div class="header">
            <img src="{{ config('filesystems.disks.s3.url') }}/public/logo.png{{ '?_dc=' . \Carbon\Carbon::now()->getTimestamp() }}" alt="{{ config('app.name') }}">
        </div>
        <div class="content">
            <p>{{ __('email-new-client.email.hello') }} <strong>{{ $user->short_name ?? 'Usuario' }}</strong>{{ __('email-new-client.email.thanks', ['app_name' => config('app.name')]) }}</p>
            <p>
                {{ __('email-new-client.email.instructions', ['app_name' => config('app.name')]) }}
            </p>
            <ol>
                <li>{{ __('email-new-client.email.download_app') }} <strong>{{ config('app.name') }}</strong> {{ __('email-new-client.email.mobile') }}
                    <a href="{{ $appStoreUrl ?? '' }}">
                        <img src="https://fanaticadas.s3.us-east-1.amazonaws.com/sportscrowd/default/email/appstore.png{{ '?_dc=' . \Carbon\Carbon::now()->getTimestamp() }}"
                            height="50px">
                    </a>
                    <a href="{{ $playStoreUrl ?? '' }}">
                        <img src="https://fanaticadas.s3.us-east-1.amazonaws.com/sportscrowd/default/email/playstore.png{{ '?_dc=' . \Carbon\Carbon::now()->getTimestamp() }}"
                            height="50px">
                    </a>
                </li>
                <li>{{ __('email-new-client.email.open_app') }}
                    <p>
                        <strong>{{ __('email-new-client.email.email') }}</strong> {{ $user->email ?? 'Usuario' }}
                        <br>
                        <strong>{{ __('email-new-client.email.password') }}</strong> {{ $password ?? 'XXX' }}
                    </p>
                </li>
                <li>{{ __('email-new-client.email.congratulations', ['app_name' => config('app.name')]) }}</li>
            </ol>
        </div>
        <div class="footer">
            <p>{{ config('app.name') }} / Sports Crowd &copy; {{ date('Y') }}. Todos los derechos reservados.</p>
        </div>
    </div>
</body>

</html>