- 제출된 URL:
- https://security.microsott.no/bruk-hodet/aUILoaqbuHRaf7pDlgxv9XX7i53EYjHf
- 보고서 완료:
링크 · 0개 결과
페이지에서 식별된 외부 링크
JavaScript 변수 · 3개 결과
페이지의 창 개체에 로드된 전역 JavaScript 변수는 함수 외부에서 선언된 변수로, 현재 범위 내에서 코드의 어느 부분에서나 액세스할 수 있습니다
이름 | 유형 |
---|---|
onbeforetoggle | object |
documentPictureInPicture | object |
onscrollend | object |
콘솔 로그 메시지 · 1개 결과
웹 콘솔에 기록된 메시지
유형 | 카테고리 | 로그 |
---|---|---|
verbose | dom |
|
HTML
페이지의 원시 HTML 본문
<!DOCTYPE html><html><head>
<style>
body {
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
background-color: #f0f0f0; /* Added background color for better visibility */
}
.container {
position: relative;
max-width: 400px;
width: 100%;
text-align: center;
z-index: 2; /* Ensure the login container is on top */
}
.background-container {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 1;
background-image: url("https://static.securepractice.co/phishing/1540bc1c02d5fed98ec0db417021eaa41eb43656/easypark-innlogging.png");
background-size: auto; /* Keep original resolution */
background-repeat: no-repeat;
background-position: center center; /* Center the image */
filter: blur(5px); /* Add blur effect only to the background */
}
.login-container {
background-color: rgba(255, 255, 255, 0.8);
padding: 50px;
border-radius: 10px;
}
input[type="text"],
input[type="password"] {
width: 100%;
padding: 12px 1px;
margin: 8px 0;
display: inline-block;
border: 1px solid #ccc;
box-sizing: border-box;
transition: 0.5s;
outline: none;
font-size: 17px;
border: 0;
outline: 0;
background: transparent;
border-bottom: 1px solid grey;
}
button {
background-color: #0067b8;
color: white;
padding: 10px 20px;
margin: 12px 0;
border: none;
cursor: pointer;
width: 30%;
font-size: 16px;
}
button:hover {
background-color: #005da6;
}
img.logo {
width: 150px;
}
p.forgot-password,
p.create-account,
p.login-diff{
color: #1a73e8;
text-align: left;
font-weight: 700;
font-size: 14px;
}
</style>
</head>
<body>
<div class="background-container"></div>
<div class="container">
<div class="login-container">
<img class="logo" src="https://static.securepractice.co/phishing/1540bc1c02d5fed98ec0db417021eaa41eb43656/easypark.png" alt="EasyPark Logo">
<h1>Logg inn</h1>
<h2>Logg inn på din konto privat eller bedrift</h2>
<input placeholder="Telefonnummer" type="text" required="">
<input placeholder="Passord" type="password" required="">
<p class="forgot-password">Glemt passord?</p>
<form action="https://security.microsott.no/bruk-hodet/aUILoaqbuHRaf7pDlgxv9XX7i53EYjHf" method="POST" name="myform">
<button type="submit">Neste</button>
<p class="create-account">Registrer deg hos EasyPark</p>
<p class="login-diff">Logg inn som parkeringsoperatør</p>
</form>
</div>
</div>
</body></html>