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/teamdemo.sports-crowd.com/resources/views/subscriber/abonados.blade.php
<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta name="csrf-token" content="{{ csrf_token() }}">
    <title>Abonados {{ config('app.client') }}</title>

    <link rel="stylesheet" href='../js/bootstrap/css/bootstrap.min.css'>
    <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
    <link rel="canonical" href="https://getbootstrap.com/docs/5.1/examples/sign-in/">

    <style>
        .bd-placeholder-img {
            font-size: 1.125rem;
            text-anchor: middle;
            -webkit-user-select: none;
            -moz-user-select: none;
            user-select: none;
        }

        @media (min-width: 768px) {
            .bd-placeholder-img-lg {
                font-size: 3.5rem;
            }
        }
    </style>

    <!-- Custom styles for this template -->
    <link href="abonados.css" rel="stylesheet">

    <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
    <script src="https://unpkg.com/sweetalert/dist/sweetalert.min.js"></script>

</head>

<body class="text-center">
    <main class="form-total">
        <div class="form-signin">
            <img class="mb-4" src="{{ config('filesystems.disks.s3.url') }}/public/logo.png" alt="" width="170" height="170">
            <h1 class="h3 mb-3 fw-normal"><b>Abonados {{ config('app.client') }}</b></h1>
            <h4>Bienvenido, ingrese sus datos</h4>
            <br>
            <div class="form-floating">
                <input type="number" class="form-control" id="user_document" placeholder="Documento de identidad" required>
                <label for="user_document">Documento de identidad</label>
            </div>
            <br>
            <button class="w-20 btn btn-lg btn-primary" onclick="validateUser()" id="button_send">Validar</button>
            <button class="btn btn-primary hide" type="button" disabled id="button_loading">
                <span class="spinner-border spinner-border-sm" role="status" aria-hidden="true"></span>
                Cargando...
            </button>
        </div>

        <br><br>

        <div id="user_info" hidden>
            <table class="table" style="width: 50%; margin: auto; font-size: 15px;">
                <tbody>
                    <tr>
                        <td>Nombre:</td>
                        <th id="name_user"></th>
                    </tr>
                    <tr>
                        <td>Documento:</td>
                        <th id="documento_user"></th>
                    </tr>
                    <tr>
                        <td>Email:</td>
                        <th id="user_mail"></th>
                    </tr>
                </tbody>
            </table>
            <br><br>
            <table id="subscriber_table_info" class="table table-bordered" style="width: 80%; margin: auto; font-size: 10px;">
                <thead>
                    <tr>
                        <th>SILLA</th>
                        <th>PRECIO</th>
                        <th>SELECCIONAR</th>
                    </tr>
                </thead>
                <tbody id="subscriber_table">

                </tbody>
            </table>
        </div>
        <br><br>
        <div id="total_price" hidden>
            <h4>Total a pagar: <b id="price_total"></b></h4>
            <br>
            <button class="w-40 btn btn-lg btn-success" onclick="makePayment()" id="button_send_sell">Pagar</button>
            <button class="btn btn-primary hide" type="button" disabled id="button_loading_sell">
                <span class="spinner-border spinner-border-sm" role="status" aria-hidden="true"></span>
                Cargando...
            </button>
        </div>
        <br><br><br>
    </main>
    <script src="abonados.js"></script>
    <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p" crossorigin="anonymous"></script>
    <script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.10.2/dist/umd/popper.min.js" integrity="sha384-7+zCNj/IqJ95wo16oMtfsKbZ9ccEh31eOz1HGyDuCQ6wgnyJNSYdrPa03rtR1zdB" crossorigin="anonymous"></script>
    <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.min.js" integrity="sha384-QJHtvGhmr9XOIpI6YVutG+2QOK9T+ZnN4kzFN1RtK3zEFEIsxhlmWl5/YESvpZ13" crossorigin="anonymous"></script>
</body>

</html>