- 제출된 URL:
- https://amorn.xyz/
- 보고서 완료:
링크 · 0개 결과
페이지에서 식별된 외부 링크
JavaScript 변수 · 7개 결과
페이지의 창 개체에 로드된 전역 JavaScript 변수는 함수 외부에서 선언된 변수로, 현재 범위 내에서 코드의 어느 부분에서나 액세스할 수 있습니다
이름 | 유형 |
---|---|
onbeforetoggle | object |
documentPictureInPicture | object |
onscrollend | object |
platformLanguage | string |
elemsRU | undefined |
elemsEN | undefined |
l | undefined |
콘솔 로그 메시지 · 1개 결과
웹 콘솔에 기록된 메시지
유형 | 카테고리 | 로그 |
---|---|---|
error | network |
|
HTML
페이지의 원시 HTML 본문
<!DOCTYPE html><html><head>
<title>Welcome!</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<style>
* {
margin: 0;
padding: 0;
border: 0 none;
background: none;
}
body {
font-weight: normal;
font-size: 11px;
font-family: Arial;
}
#login-wrapper {
width: 270px;
left: 50%;
margin-left: -135px;
position: absolute;
margin-top: -135px;
top: 50%;
}
#login-form {
width: 270px;
background: #5DDF94;
height: 270px;
-webkit-border-radius: 135px;
-moz-border-radius: 135px;
border-radius: 135px;
}
ul li {
list-style: none;
}
.body-login-form .tab-content {
position: inherit;
padding: inherit;
}
.b-title {
text-align: center;
padding-top: 80px;
color: white;
margin-bottom: 20px;
font-size: 27px;
}
.b-content {
font-size: 20px;
color: #FFF;
text-align: center;
}
.b-content2 {
font-size: 12px;
color: #FFF;
text-align: center;
}
.b-copyright {
margin-top: 40px;
text-align: center;
}
.b-copyright_link {
color: #737373;
}
.b-text_lang_ru {
display: none;
}
</style>
</head>
<body class="body-login-form">
<div id="main-wrapper">
<div id="overlay" class="hide"></div>
<div id="content" class="tab-content active" data-tabid="tab1"><div id="login-wrapper">
<div id="login-form">
<div id="login-form-form">
<h2 class="b-title b-text b-text_lang_en">Welcome!</h2>
<h2 class="b-title b-text b-text_lang_ru">Приветствуем!</h2>
<div class="b-content">
<span class="b-text b-text_lang_en">amorn.xyz</span>
<span class="b-text b-text_lang_ru">amorn.xyz</span>
<br>
</div>
<div class="b-content2">
<span class="b-text b-text_lang_en">Site just created.</span>
<span class="b-text b-text_lang_ru">Сайт только что создан.</span>
</div>
</div>
</div>
<div id="error-log" style="display: none;"></div>
</div></div>
</div>
<script type="text/javascript">
var platformLanguage = navigator && (
navigator.language ||
navigator.browserLanguage ||
navigator.systemLanguage ||
navigator.userLanguage ||
null ),
elemsRU, elemsEN;
if (platformLanguage.match("ru") && document.getElementsByClassName) {
elemsRU = document.getElementsByClassName("b-text_lang_ru");
elemsEN = document.getElementsByClassName("b-text_lang_en");
var l = elemsEN.length;
while(l--) {
elemsEN[l].style.display = "none";
}
l = elemsRU.length;
while(l--) {
elemsRU[l].style.display = "block";
}
document.title = "Приветствуем!";
}
</script>
</body></html>