- ID de l'analyse :
- ce2a8907-c907-4100-96b4-bb256a99a1f2Terminée
- URL soumise :
- https://twoa.addcn.com/
- Fin du rapport :
Liens : 0 trouvé(s)
Liens sortants identifiés à partir de la page
Variables JavaScript : 3 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 |
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 PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="viewport" content="width=device-width,minimal-ui,initial-scale=1.0,maximum-scale=1.0,minimum-scale=1.0,user-scalable=no">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<title>OA系统跳转提示</title>
<style type="text/css">
body {
background-color: #f5e0e5 !important;
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
.contact-form-wrapper {
padding: 100px 0;
}
.contact-form {
padding: 30px 40px;
background-color: #ffffff;
border-radius: 12px;
max-width: 800px;
width:70%;
}
.contact-form textarea {
resize: none;
}
.contact-form .form-input,
.form-text-area {
background-color: #f0f4f5;
height: 50px;
padding-left: 16px;
}
.contact-form .form-text-area {
background-color: #f0f4f5;
height: auto;
padding-left: 16px;
}
.contact-form .form-control::placeholder {
color: #aeb4b9;
font-weight: 500;
opacity: 1;
}
.contact-form .form-control:-ms-input-placeholder {
color: #aeb4b9;
font-weight: 500;
}
.contact-form .form-control::-ms-input-placeholder {
color: #aeb4b9;
font-weight: 500;
}
.contact-form .form-control:focus {
border-color: #f33fb0;
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.07), 0 0 8px #f33fb0;
}
.contact-form .title {
text-align: center;
font-size: 24px;
font-weight: 500;
}
.contact-form .description {
color: #aeb4b9;
font-size: 20px;
text-align: center;
}
.contact-form #wait {
font-size: 18px;
text-align: center;
}
.contact-form .submit-button-wrapper {
text-align: center;
}
.contact-form .submit-button-wrapper input {
border: none;
border-radius: 4px;
background-color: #f23292;
color: white;
text-transform: uppercase;
font-weight: 500;
letter-spacing: 2px;
}
.contact-form .submit-button-wrapper input:hover {
background-color: #d30069;
}
</style>
</head>
<body>
<div>
<div class="contact-form-wrapper d-flex justify-content-center">
<form action="#" class="contact-form">
<h5 class="title" style="color:red;">失敗!</h5>
<p class="description">請先登入</p>
<p style="text-align:center;"><span id="wait">4</span>秒後頁面將自動跳轉</p>
<div class="submit-button-wrapper">
<input type="button" value="立即跳轉" id="href" link="/Home/Index/login.html?tmpUrl=/" onclick="location.href='/Home/Index/login.html?tmpUrl=/'">
</div>
</form>
</div>
</div>
<script type="text/javascript">
(function(){
var wait = document.getElementById('wait'),href = document.getElementById('href').getAttribute("link")
var interval = setInterval(function(){
var time = --wait.innerHTML;
if(time <= 0) {
location.href = href;
clearInterval(interval);
};
}, 1000);
window.stop = function (){
clearInterval(interval);
}
})();
</script>
</body></html>