<!
DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>PROFESSORxDATABASE </title>
<style>
body {
margin: 0;
padding: 0;
background: #000;
font-family: Arial, sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
animation: fadeIn 1s ease-in-out;
}
.box {
background: #111;
border: 2px solid red;
box-shadow: 0 0 25px red;
padding: 30px 20px;
border-radius: 15px;
width: 100%;
max-width: 400px;
text-align: center;
animation: fadeIn 1s ease-in-out;
}
.top-title {
color: #0f0;
text-shadow: 0 0 10px #0f0;
font-size: 16px;
margin-bottom: 5px;
font-weight: bold;
letter-spacing: 2px;
}
.box h2 {
color: red;
font-size: 24px;
margin-bottom: 20px;
}
.box input {
width: 100%;
padding: 12px;
border-radius: 8px;
border: none;
margin-bottom: 20px;
font-size: 16px;
background: #333;
color: white;
box-shadow: inset 0 0 5px red;
}
.box button {
width: 100%;
padding: 12px;
border: none;
border-radius: 8px;
margin: 10px 0;
font-size: 16px;
font-weight: bold;
cursor: pointer;
color: white;
background: linear-gradient(90deg, #c00000, #ff0000);
box-shadow: 0 0 15px red;
transition: 0.3s;
}
.box button:hover {
transform: scale(1.05);
background: linear-gradient(90deg, #ff0000, #c00000);
}
.whatsapp-btn {
background: linear-gradient(90deg, #25D366, #128C7E);
box-shadow: 0 0 15px #25D366;
color: white;
}
#responseBox {
color: white;
margin-top: 20px;
font-size: 16px;
display: none;
animation: fadeIn 1s ease-in-out;
background: #222;
border: 1px solid #444;
padding: 15px;
border-radius: 10px;
text-align: left;
}
@keyframes fadeIn {
0% { opacity: 0; }
100% { opacity: 1; }
}
</style>
</head>
<body>
<div class="box">
<div class="top-title">PROXARMY</div>
<h2>🔍 Search SIM Details</h2>
<input type="text" id="number" placeholder="Enter phone number" required />
<button onclick="fetchData()">🔎 Get Details</button>
<div id="responseBox"></div>
<button id="shareButton" class="whatsapp-btn" onclick="shareWhatsApp()"
style="display: none;">📲 Share on WhatsApp</button>
<button id="channelButton" class="whatsapp-btn"
onclick="[Link]('[Link] ',
'_blank')">📢 Join WhatsApp Channel</button>
</div>
<script>
async function fetchData() {
const number = [Link]("number").[Link]();
const responseBox = [Link]("responseBox");
const shareButton = [Link]("shareButton");
if (!number) {
alert("Please enter a phone number.");
return;
}
const url = `[Link]
{encodeURIComponent(`[Link]
try {
const res = await fetch(url);
const json = await [Link]();
const apiData = [Link]([Link]);
if ([Link] === "success" && [Link]([Link]) &&
[Link] > 0) {
const user = [Link][0];
const content = `
📞 Mobile: ${[Link] || "Not found"}
👤 Name: ${[Link] || "Not found"}
🆔 CNIC: ${[Link] || "Not found"}
📍 Address: ${[Link] || "Not found"}
📶 Operator: ${[Link] || "Not found"}
`;
[Link] = content;
[Link] = "block";
[Link] = "inline-block";
} else {
[Link] = `<p style="color: yellow; font-size: 18px; font-
weight: bold;">Data Not Found</p>`;
[Link] = "block";
[Link] = "none";
}
} catch (e) {
[Link] = `<p style="color: red; font-size: 18px; font-
weight: bold;">Error fetching data. Please try again later.</p>`;
[Link] = "block";
[Link] = "none";
}
}
function shareWhatsApp() {
const responseBox = [Link]("responseBox");
const text = encodeURIComponent([Link]);
const url = `[Link]
[Link](url, '_blank');
}
</script>
<!-- Footer Script -->
<script src=""></script>
</body>
</html>