Tafitaniaina rtm chatbot

Accès sécurisé à menu.html /* Styles généraux */ body { font-family: 'Arial', sans-serif; display: flex; justify-content: center; align-items: center; height: 100vh; margin: 0; background: url('fondcode.gif') no-repeat center center fixed; background-size: cover; color: #fff; }
    /* Style du conteneur principal */
    .container {
        text-align: center;
        padding: 40px;
        background-color: rgba(0, 0, 0, 0.7);
        border-radius: 12px;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
        max-width: 350px;
        width: 100%;
    }

    /* Styles des éléments de formulaire */
    input[type="password"] {
        padding: 10px;
        width: 80%;
        margin-top: 20px;
        border: none;
        border-radius: 5px;
        font-size: 16px;
    }

    button {
        margin-top: 20px;
        padding: 10px 20px;
        font-size: 16px;
        border: none;
        border-radius: 5px;
        background-color: #3b5998;
        color: #fff;
        cursor: pointer;
        transition: background-color 0.3s;
    }

    button:hover {
        background-color: #2d4373;
    }

    /* Style des messages d'erreur */
    .error {
        color: #ff4c4c;
        margin-top: 20px;
    }

    /* Style du lien Facebook */
    #facebook {
        display: none;
    }
</style>
<script>
    function verifierCode() {
        const code = document.getElementById('code').value;  // Récupère le code saisi
        const messageErreur = document.getElementById('erreur');  // Message d'erreur

        if (code === '120612003') {
            // Si le code est correct, redirige vers menu.html
            window.location.href = 'menu.html';
        } else {
            // Affiche un message d'erreur si le code est incorrect
            messageErreur.textContent = 'Mot de passe incorrect. Veuillez faire un abonnement pour accéder à la page.';
            document.getElementById('facebook').style.display = 'block'; // Affiche l'instruction
        }
    }
</script>

Entrez le code pour accéder à la page suivante


Envoyer

    </div>
</div>

Please Tell us what’s happening in your own words.

Learning to describe problems is hard, but it is an important part of learning how to code.

Also, the more you say, the more we can help!