- Scan ID:
- ce2a8907-c907-4100-96b4-bb256a99a1f2Finished
- Submitted URL:
- https://twoa.addcn.com/
- Report Finished:
Links · 0 found
The outgoing links identified from the page
JavaScript Variables · 3 found
Global JavaScript variables loaded on the window object of a page, are variables declared outside of functions and accessible from anywhere in the code within the current scope
Name | Type |
---|---|
onbeforetoggle | object |
documentPictureInPicture | object |
onscrollend | object |
Console log messages · 0 found
Messages logged to the web console
HTML
The raw HTML body of the page
<!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>