- ID de l'analyse :
- d922024a-aa0d-482f-9124-689bc622315dTerminée
- URL soumise :
- https://www.jawbone.com/
- Fin du rapport :
Liens : 1 trouvé(s)
Liens sortants identifiés à partir de la page
Lien | texte |
---|---|
https://status.squarespace.com | status.squarespace.com |
Variables JavaScript : 4 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 |
showStatusPage | function |
Messages de journal de console : 1 trouvé(s)
Messages consignés dans la console web
Type | Catégorie | Enregistrement |
---|---|---|
error | network |
|
HTML
Le corps HTML de la page en données brutes
<!DOCTYPE html><html><head>
<title>503 Service Unavailable</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style type="text/css">
body {
background: white;
}
main {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
text-align: center;
min-width: 95vw;
}
main h1 {
font-weight: 400;
font-size: 4.6em;
color: #191919;
margin: 0 0 11px 0;
}
main p {
font-size: 1.4em;
color: #3a3a3a;
font-weight: 400;
line-height: 2em;
margin: 0;
}
main p a {
color: #3a3a3a;
text-decoration: none;
border-bottom: solid 1px #3a3a3a;
}
body {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 12px;
}
#status-page {
display: none;
}
footer {
position: absolute;
bottom: 22px;
left: 0;
width: 100%;
text-align: center;
line-height: 2em;
}
footer span {
margin: 0 11px;
font-size: 1em;
font-weight: 400;
color: #a9a9a9;
white-space: nowrap;
}
footer span strong {
font-weight: 400;
color: #191919;
}
@media (max-width: 600px) {
body {
font-family: "Helvetica Neue", Helvetica, Arial, Sans-Serif;
}
}
</style>
</head>
<body>
<main>
<h1>503 Service Unavailable</h1>
<p id="status-page" style="display: block;">Please visit <a href="https://status.squarespace.com">status.squarespace.com</a> for updates</p>
</main>
<footer>
<span><strong>1FAqhUwq/EXIP2Ajb @ Thu, 14 Nov 2024 14:36:33 UTC</strong></span>
<span></span>
</footer>
<script>
function showStatusPage(){
var statusCode = 503 ;
var statusPageEl = document.getElementById('status-page');
if(!statusPageEl) { return; }
if (statusCode && statusCode >= 500 && statusCode <= 599) {
statusPageEl.style.display = 'block';
} else {
statusPageEl.style.display = 'none';
}
};
try {
showStatusPage();
} catch (error) {
console.log(error)
}
</script>
</body></html>