<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Service Dog ID Verification</title>
<style>
body {
font-family: Merriweather, serif;
background-color: #ffffff;
color: #000000;
text-align: center;
padding: 60px 20px;
margin: 0;
}
.container {
max-width: 500px;
margin: 0 auto;
}
.logo {
width: 140px;
margin-bottom: 20px;
}
h1 {
font-size: 28px;
margin-bottom: 10px;
}
p {
font-size: 16px;
margin-bottom: 25px;
}
input {
width: 100%;
max-width: 280px;
padding: 14px;
border: 1px solid #ccc;
font-size: 16px;
border-radius: 4px;
}
button {
margin-top: 20px;
padding: 14px 28px;
background-color: #000000;
color: #ffffff;
border: none;
cursor: pointer;
font-size: 16px;
border-radius: 4px;
}
button:hover {
background-color: #222222;
}
.result {
margin-top: 30px;
font-size: 16px;
font-weight: bold;
max-width: 400px;
margin-left: auto;
margin-right: auto;
}
.valid {
color: #D92446;
}
.invalid {
color: #000000;
}
.footer {
margin-top: 60px;
font-size: 12px;
color: #777;
}
</style>
</head>
<body>
<div class="container">
<img src="https://img1.wsimg.com/isteam/ip/6197eddf-ce4d-49cb-8730-12ac1cbe8d0d/IMG_8819.png/:/rs=w:208,h:208,cg:true,m/cr=w:208,h:208/qt=q:95" class="logo">
<h1>Service Dog ID Verification</h1>
<p>Please enter the service dog ID number below:</p>
<input type="text" id="idNumber" placeholder="Enter ID number">
<br>
<button onclick="verifyID()">Verify</button>
<div id="result" class="result"></div>
<div class="footer">
© Service Pawz
</div>
</div>
<script>
function verifyID() {
var idNumber = document.getElementById("idNumber").value.trim();
var result = document.getElementById("result");
var validIDs = [
"991003001639039",
"991003001967319",
"985121011240556",
"985112005434398"
];
if (validIDs.includes(idNumber)) {
result.innerHTML = "ID number is valid! This dog was trained by Service Pawz as a Seizure Support Dog.";
result.className = "result valid";
} else {
result.innerHTML = "ID number is not valid or this dog was not trained by Service Pawz.";
result.className = "result invalid";
}
}
</script>
</body>
</html>