- ID de l'analyse :
- a410495e-2016-4b0c-809e-2e0ec6242bb5Terminée
- URL soumise :
- https://robiiox.com/groups/151199088652/ManageFounds
- 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 |
retry | function |
goBack | function |
Messages de journal de console : 0 trouvé(s)
Messages consignés dans la console web
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>Roblox - Error</title>
<style>
body {
margin: 0;
font-family: 'Arial', sans-serif;
background: linear-gradient(135deg, #080808, #050505);
color: #ffffff;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
overflow: hidden;
}
.error-container {
text-align: center;
padding: 30px;
border: 2px solid #ff5555;
border-radius: 16px;
box-shadow: 0 0 25px rgba(255, 85, 85, 0.8), 0 0 15px rgba(0, 0, 0, 0.7);
background: #0f0f0f;
max-width: 90%;
animation: slideDown 0.8s ease-out;
}
.error-title {
font-size: 3.5em;
font-weight: bold;
color: #ff5555;
margin-bottom: 15px;
text-shadow: 0 0 12px rgba(255, 85, 85, 0.7);
animation: glowPulse 2s infinite;
}
.error-message {
font-size: 1.2em;
margin-bottom: 25px;
color: #dddddd;
line-height: 1.5;
}
.button-container {
display: flex;
justify-content: center;
gap: 25px;
flex-wrap: wrap;
}
.error-button {
background: #ff5555;
color: #fff;
padding: 12px 30px;
border: none;
border-radius: 8px;
font-size: 1.1em;
font-weight: bold;
cursor: pointer;
transition: transform 0.2s ease, box-shadow 0.3s ease;
text-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
}
.error-button:hover {
transform: scale(1.08);
box-shadow: 0 0 15px rgba(255, 85, 85, 0.9);
}
.error-button:active {
transform: scale(1);
box-shadow: 0 0 8px rgba(255, 85, 85, 0.8);
}
footer {
position: fixed;
bottom: 5%;
width: 100%;
text-align: center;
color: #999;
font-size: 0.9em;
}
@keyframes slideDown {
from {
opacity: 0;
transform: translateY(-20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
@keyframes glowPulse {
0%, 100% {
text-shadow: 0 0 12px rgba(255, 85, 85, 0.7);
}
50% {
text-shadow: 0 0 24px rgba(255, 85, 85, 0.9);
}
}
</style>
</head>
<body>
<div class="error-container">
<div class="error-title">An Error Occurred</div>
<div class="error-message">Oops! Something went wrong while processing your request. Please try again or contact support if the issue persists.</div>
<div class="button-container">
<button class="error-button" onclick="retry()">Retry</button>
<button class="error-button" onclick="goBack()">Go Back</button>
</div>
</div>
<footer>Roblox © 2024. All rights reserved.</footer>
<script>
function retry() {
location.reload();
}
function goBack() {
window.history.back() || (window.location.href = '/');
}
</script>
</body></html>