Tryag File Manager
Home
||
Turbo Force
||
B-F Config_Cpanel
Current Path :
/
home
/
ynormeco
/
.trash
/
queenmatka
/
Or
Select Your Path :
Upload File :
New :
File
Dir
/home/ynormeco/.trash/queenmatka/index.php
<?php include("inc/config.php"); $conn = connect_database(); session_start(); $memcode = isset($_COOKIE['memberlogin']) ? $_COOKIE['memberlogin'] : NULL; if(isset($_COOKIE['memberlogin'])) { header("location: dashboard.php"); exit; } unset($_SESSION['janobecartmaster']); ?> <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Queen Matka</title> <meta name="viewport" content="width=device-width, initial-scale=1 maximum-scale=1 user-scalable=no"> <meta name="mobile-web-app-capable" content="yes"> <meta name="HandheldFriendly" content="True"> <style> ::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */ color: #000; opacity: 1; /* Firefox */ font-size:18px; } :-ms-input-placeholder { /* Internet Explorer 10-11 */ color: #000; font-size:18px; } ::-ms-input-placeholder { /* Microsoft Edge */ color: #000; font-size:18px; } </style> <script type="text/javascript"> function isNumber(evt) { evt= (evt) ? evt: window.event; var charCode = (evt.which) ? evt.which : evt.keyCode; if (charCode >31 && (charCode < 48 || charCode > 57)) { alert("Please Enter Only Numbers."); return false; } return true; } </script> </head> <body style="background: linear-gradient(to top, #763a87, #00f2ff); background-attachment: fixed; font-family:sans-serif; padding:0px; margin:0px;" > <p align="center"><img src="img/logo.png" style="width:90px;" ></p> <p align="center" style="color:#000; font-size:20px; line-height:32px;">Welcome To <br> <span style="color:#000; font-size:25px;"><strong>Queen Matka</strong></span> </p> <?php $msg = isset($_GET['insert']) ? $_GET['insert'] : NULL; if($msg == "success") { echo "<h4 align='center' style='color:#00ff00;'>Congratulations, You are Registered Successfully</h4>"; } else if($msg == "inactivefail") { echo "<h4 align='center' style='color:#ffff00;'> Sorry!!! Your Account is Inactive </h4>"; } else if($msg == "nomatchfail") { echo "<h4 align='center' style='color:#ffff00;'> Sorry!!! Incorrect Login Details, Please Try Again </h4>"; } ?> <table align="center" width="100%" border="0"> <form method="post" action="backquery/login-member.php" autocomplete="off"> <tr style="width:100%; text-align:center;"> <td> <input type="text" placeholder="Mobile Number" name="mobile" style="width:80%; color:#000; font-size:18px; outline: none; padding:10px; border:solid 2px #000; border-radius:10px; background-color: transparent;" onKeyPress="return isNumber(event);" maxlength="10" pattern="[0-9]{10}" required> </td> </tr> <tr style="width:100%; text-align:center; height:10px;"> </tr> <tr style="width:100%; text-align:center;"> <td> <input type="password" placeholder="Password" name="psw" style="width:80%; color:#000; font-size:18px; outline: none; padding:10px; border:solid 2px #000; border-radius:10px; background-color: transparent;" required> </td> </tr> <tr style="width:100%; text-align:center; height:7px;"> </tr> <tr style="width:100%; text-align:center; color:#000; font-family:sans-serif; line-height:20px; font-size:12px;"> <td> By Click on Login You are agree with our Privacy Policy </td> </tr> <tr style="width:100%; text-align:center; height:10px;"> </tr> <tr style="width:100%; text-align:center; color:#000; font-family:sans-serif; line-height:22px; font-size:15px;"> <td> <input type="submit" value="LOGIN" style="width:60%; color:#fff; font-weight:bold; font-size:18px; outline: none; padding:10px; border:solid 2px #000; border-radius:10px; background-color: #000;"> </td> </tr> <tr style="width:100%; text-align:center; height:15px;"> </tr> <tr style="width:100%; text-align:center; color:#000; font-family:sans-serif; line-height:20px; font-size:14px;"> <td> Dont't have an Account?<br> <strong><a href="member-registration.php" style="color:#000; text-decoration:none;">SignUp Here</a></strong> </td> </tr> </form> </table> </body> </html>