https://malenirt.site/

ID de l'analyse :
2046a4ad-8a74-4fc7-8c46-5275cac7193eTerminée
URL soumise :
https://malenirt.site/
Fin du rapport :

Liens : 0 trouvé(s)

Variables JavaScript : 4 trouvée(s)

NomType
onbeforetoggleobject
documentPictureInPictureobject
onscrollendobject
checkAgefunction

Messages de journal de console : 1 trouvé(s)

TypeCatégorieEnregistrement
errornetwork
URL
https://malenirt.site/favicon.ico
texte
Failed to load resource: the server responded with a status of 404 ()

HTML

<!DOCTYPE html><html lang="uk"><head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Age verification</title>
    <style>
        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            overflow: hidden;
            background-color: #f4f4f4;
        }

        .background {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            filter: blur(10px);
            z-index: -1;
        }

        .container {
            text-align: center;
            z-index: 1;
            background-color: rgba(255, 255, 255, 0.9);
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
            max-width: 400px;
            width: 100%;
        }

        h1 {
            font-size: 24px;
            margin: 0 0 20px;
        }

        button {
            font-size: 18px;
            padding: 10px 20px;
            cursor: pointer;
            border: none;
            border-radius: 5px;
            color: #fff;
            margin: 0 10px;
        }

        .yes-button {
            background-color: #4CAF50;
        }

        .no-button {
            background-color: #F44336;
        }

        @media (max-width: 480px) {

            .container{
                margin: 0 20px 0 20px;    
            }
            
            h1 {
                font-size: 32px;  
            }

            button {
                font-size: 26px; 
                padding: 20px 40px; 
            }
        }
    </style>
</head>

<body>
    <div class="background"></div>

    <div class="container">
        <h1>Are you over 18 years old?</h1>
        <button class="yes-button" onclick="checkAge(true)">Yes</button>
        <button class="no-button" onclick="checkAge(false)">No</button>
    </div>

    <script>
        function checkAge(isAdult) {
            if (isAdult) {
                window.open('https://molliant.online');
            } else {
                window.open('https://molliant.online');
            }
        }
    </script>



</body></html>