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/demo.sports-crowd.com/resources/views/mails/reset-code.blade.php
<!DOCTYPE html>
<html lang="es">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Reestablecer contraseña</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">
            <table>
                <tr>
                    <td style="text-align: center;">
                        <h1>{{ __('passwords.email.title') }}</h1>
                        <h2>
                            <span style="border:1px solid {{ $bar_color }}; padding:5px; border-radius:5px;">{{ $code }}</span>
                        </h2>
                        <p>{{ __('passwords.email.duration', ['minutes' => $minutes]) }}</p>
                        <p>{{ __('passwords.email.message', ['app_name' => config('app.name')]) }}</p>
                    </td>
                </tr>
            </table>
        </div>
        <div class="footer">
            <p>{{ config('app.name') }} / Sports Crowd &copy; {{ date('Y') }}. Todos los derechos reservados.</p>
        </div>
    </div>
</body>

</html>