?
Path : /home/enviro777/public_html/admin/ |
Current File : /home/enviro777/public_html/admin/index.php |
<?php ob_start(); session_start(); include "include/connection.php"; $obj = new db(); if($_POST) { extract($_POST); $sql="select * from admin where name='$login' and `password`='$password'"; $run = $obj->query($sql); $num=$obj->count_row($sql); if($num>0) { $_SESSION['admin']=$login; header("location:home.php"); } else{ $msg="Worng Username and Password"; } } ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <title>Admin Panel</title> <link href="style.css" rel="stylesheet" type="text/css" /> <link type="text/css" rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" /> <script language="javascript" src="javascript.js"></script> </head> <body id="body"> <table class="tbal" > <tr><td colspan="2" id="error"> <?=@$msg?></td></tr> <tr><td colspan="2" style="font-size:26px; color:#fff; font-weight:bold; font-family:Helvetica; text-align:center;" >Admin Login</td></tr> <form name="loginform" action="index.php" method="post" onsubmit="return validation()"> <tr><td class="textboxcap"><i class="fa fa-user" aria-hidden="true"></i> Username </td><td><input type="text" name="login" value="" class="inputboxp"/></td></tr> <tr><td class="textboxcap"><i class="fa fa-key" aria-hidden="true"></i> Password </td><td><input type="password" name="password" value="" class="inputboxp"/></td></tr> <tr><td colspan="2" align="center"><input type="submit" value="Log in" name="submit" class="submitbox "/></td></tr> </form> </table> </body> </html>