Spaces:
Paused
Paused
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>QUEEN ANJU MD PAIR CODE</title> | |
| <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css"> | |
| <style> | |
| body { | |
| display: flex; | |
| justify-content: center; | |
| align-items: center; | |
| height: 100vh; | |
| margin: 0; | |
| background-image: url("https://wallpapercave.com/w/wp13381180.jpg"); /* Set the background image */ | |
| background-repeat: no-repeat; | |
| background-position: center; | |
| background-size: cover; | |
| font-family: Arial, sans-serif; | |
| } | |
| .container { | |
| display: flex; | |
| flex-direction: column; | |
| align-items: center; | |
| } | |
| .box { | |
| width: 300px; | |
| height: 330px; | |
| padding: 20px; | |
| position: relative; | |
| text-align: center; | |
| background-color: rgba(255,255,255,0.5); | |
| border-radius: 10px; | |
| transform: perspective(1000px) rotateY(0deg); | |
| box-shadow: none; /* Removed box shadow */ | |
| position: relative; | |
| } | |
| #text { | |
| color: #000; /* Set the text color to black (#000) */ | |
| } | |
| .input-container input { | |
| color: #000; /* Set the text color to black (#000) */ | |
| } | |
| .centered-text { | |
| color: #000; /* Set the text color to black (#000) */ | |
| } | |
| .input-container { | |
| display: flex; | |
| background: white; | |
| border-radius: 1rem; | |
| background: linear-gradient(45deg, #c5c5c5 0%, #ffffff 100%); | |
| padding: 0.3rem; | |
| gap: 0.3rem; | |
| max-width: 300px; /* Set your desired maximum width */ | |
| width: 100%; | |
| } | |
| .input-container input { | |
| border-radius: 0.8rem 0 0 0.8rem; | |
| background: #e8e8e8; | |
| width: 89%; | |
| flex-basis: 75%; | |
| padding: 1rem; | |
| border: none; | |
| border-left: 2px solid #ff9d9d; | |
| color: #5e5e5e; | |
| transition: all 0.2s ease-in-out; | |
| } | |
| .input-container input:focus { | |
| border-left: 2px solid #ff9d9d; | |
| outline: none; | |
| } | |
| .input-container button { | |
| flex-basis: 25%; | |
| padding: 1rem; | |
| background: linear-gradient(135deg, #8a2be2 0%, #800080 100%); /* Purple background */ | |
| font-weight: 900; | |
| letter-spacing: 0.3rem; | |
| text-transform: uppercase; | |
| color: white; | |
| border: none; | |
| width: 100%; | |
| border-radius: 0 1rem 1rem 0; | |
| transition: all 0.2s ease-in-out; | |
| } | |
| .input-container button:hover { | |
| background: linear-gradient(135deg, #A8E4A0 0%, #32CD32 100%); | |
| color: red; /* Change text color on hover to red */ | |
| } | |
| @media (max-width: 500px) { | |
| .input-container { | |
| flex-direction: column; | |
| } | |
| .input-container input { | |
| border-radius: 0.8rem; | |
| } | |
| .input-container button { | |
| padding: 1rem; | |
| border-radius: 0.8rem; | |
| } | |
| } | |
| .centered-text { | |
| text-align: center; | |
| } | |
| </style> | |
| </head> | |
| <body> | |
| <div class="container"> | |
| <div class="main"> | |
| <div class="box" id="box"> | |
| <div id="text"> | |
| <i class="fa fa-user"></i> | |
| <p> | |
| <h3 class="centered-text">Link with phone number</h3> | |
| <br> | |
| <h6>⚙Enter your number with country code.⚙</h6> | |
| <div class="input-container"> | |
| <input placeholder="+94789123880" type="number" id="number" placeholder="⚙enter your phone number with country code⚙" name=""> | |
| <button id="submit">enter</button> | |
| </div> | |
| <a id="waiting-message" class="centered-text" style="display: none;">in process...</a> | |
| <br> | |
| <br> | |
| <main id="pair"></main> | |
| </p> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <script src="https://cdnjs.cloudflare.com/ajax/libs/axios/1.0.0-alpha.1/axios.min.js"></script> | |
| <script> | |
| let a = document.getElementById("pair"); | |
| let b = document.getElementById("submit"); | |
| let c = document.getElementById("number"); | |
| let box = document.getElementById("box"); | |
| async function Copy() { | |
| let text = document.getElementById("copy").innerText; | |
| let obj = document.getElementById("copy"); | |
| await navigator.clipboard.writeText(obj.innerText.replace('CODE: ', '')); | |
| obj.innerText = "COPIED"; | |
| obj.style = "color:blue;font-weight:bold"; | |
| obj.size = "5"; | |
| setTimeout(() => { | |
| obj.innerText = text; | |
| obj.style = "color:black;font-weight-bold"; | |
| obj.size = "5"; | |
| }, 500); | |
| } | |
| b.addEventListener("click", async (e) => { | |
| e.preventDefault(); | |
| if (!c.value) { | |
| a.innerHTML = '<a style="color:black;font-weight:bold">❗Enter your whatsapp number with country code.</a><br><br>'; | |
| } else if (c.value.replace(/[^0-9]/g, "").length < 11) { | |
| a.innerHTML = '<a style="color:black;font-weight:bold">❌Invalid number format❌</a><br><br>'; | |
| } else { | |
| const bc = c.value.replace(/[^0-9]/g, ""); | |
| let bb = ""; | |
| let bbc = ""; | |
| const cc = bc.split(''); | |
| cc.map(a => { | |
| bbc += a; | |
| if (bbc.length == 3) { | |
| bb += " " + a; | |
| } else if (bbc.length == 8) { | |
| bb += " " + a; | |
| } else { | |
| bb += a; | |
| } | |
| }); | |
| c.type = "text"; | |
| c.value = "+" + bb; | |
| c.style = "color:black;font-size:20px"; | |
| a.innerHTML = '<a style="color:black;font-weight:bold">Please wait🔎 </a><br><br>'; | |
| let { data } = await axios(`/code?number=${bc}`); | |
| let code = data.code || "Service Unavailable"; | |
| a.innerHTML = '<font id="copy" onclick="Copy()" style="color:red;font-weight:bold" size="5">CODE: <span style="color:black;font-weight:bold">' + code + '</span></font><br><br><br>'; | |
| } | |
| }); | |
| </script> | |
| </body> | |
| </html> | |