- 제출된 URL:
- https://signin.vuelio.co.uk/
- 보고서 완료:
링크 · 0개 결과
페이지에서 식별된 외부 링크
JavaScript 변수 · 6개 결과
페이지의 창 개체에 로드된 전역 JavaScript 변수는 함수 외부에서 선언된 변수로, 현재 범위 내에서 코드의 어느 부분에서나 액세스할 수 있습니다
이름 | 유형 |
---|---|
onbeforetoggle | string |
documentPictureInPicture | string |
onscrollend | string |
APP | string |
toggleInactiveAccounts | string |
searchClientAccounts | string |
콘솔 로그 메시지 · 0개 결과
웹 콘솔에 기록된 메시지
HTML
페이지의 원시 HTML 본문
<!DOCTYPE html><html class="js"><head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Home Page</title>
<link rel="stylesheet" href="/css/styles.css">
<link rel="icon" href="/favicon.ico" type="image">
<link rel="stylesheet" href="https://use.typekit.net/ojc6mod.css">
<script>(function (H) { H.className = H.className.replace(/\bno-js\b/, 'js') })(document.documentElement)</script>
</head>
<body>
<div class="container-fluid full-height">
<div class="row no-gutters">
<div class="col xsmall-12 small-6 medium-4">
<div class="component c-logo">
<img src="/img/logo-vuelio.svg" alt="Vuelio logo" class="logo">
</div>
<div class="component c-login-form">
<div class="intro">
<h1>Sign in to continue to your Vuelio account</h1>
<p>Enter your username/email and lets get started.</p>
</div>
<form action="/" method="post"> <div class="field required has-text-input">
<label for="input-name">Username/Email:</label>
<input type="email" id="input-name" name="Username" value="">
<input id="ReturnUrl" name="ReturnUrl" type="hidden" value="">
</div>
<div class="action">
<input type="submit" value="Next" class="button next disabled" disabled="">
</div>
<input name="__RequestVerificationToken" type="hidden" value="CfDJ8H6vPyk8TIVFhLi9G-XHaJeLMr_xwkbCn0SNgHxVfM_OC44a0rfOQegGlR5BqVswK6tDgZDfH8qRvo-MWM-iJ02gy7rxLrUeybQ5RK0gcXbwleocHX2UHzoG3qXnpexEF1xd1N-GS-hljEGaHMYBBAE"></form> </div>
</div>
<div class="col xsmall-12 small-6 medium-8">
<div class="component c-login-image js-login-image" style="background-image: url('/img/login-images/login.jpg')">
</div>
</div>
</div>
<script>
(function () {
var localStorageLoginItem = localStorage.getItem("currently-authenticated");
var obj = JSON.parse(localStorageLoginItem);
if (obj !== null && obj.expiry > Date.now()) {
window.location.replace(obj.origin);
} else {
localStorage.removeItem("currently-authenticated");
}
})();
(function () {
var username = localStorage.getItem("username");
if (username !== null && username !== '') {
document.getElementById("input-name").value = unescape(username);
}
})();
</script>
</div>
<!-- Load scripts -->
<script src="/js/scripts.min.js"></script>
</body></html>