0% found this document useful (0 votes)
114 views2 pages

Website For Salon Admin

This PHP document handles admin login authentication. It checks submitted username and password against those stored in the database. If credentials match, the user is logged in by starting a session and redirecting to the dashboard. If they do not match, an error is displayed. The document also includes HTML for the login form.

Uploaded by

Rabbi Ali
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
114 views2 pages

Website For Salon Admin

This PHP document handles admin login authentication. It checks submitted username and password against those stored in the database. If credentials match, the user is logged in by starting a session and redirecting to the dashboard. If they do not match, an error is displayed. The document also includes HTML for the login form.

Uploaded by

Rabbi Ali
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 2

<?

php
session_start();
include('includes/config.php');
if(isset($_POST['login']))
{
$email=$_POST['username'];
$password=md5($_POST['password']);
$sql ="SELECT UserName,Password FROM admin WHERE UserName=:email and
Password=:password";
$query= $dbh -> prepare($sql);
$query-> bindParam(':email', $email, PDO::PARAM_STR);
$query-> bindParam(':password', $password, PDO::PARAM_STR);
$query-> execute();
$results=$query->fetchAll(PDO::FETCH_OBJ);
if($query->rowCount() > 0)
{
$_SESSION['alogin']=$_POST['username'];
echo "<script type='text/javascript'> document.location = 'dashboard.php';
</script>";
} else{

echo "<script>alert('Invalid Details');</script>";

?>
<!doctype html>
<html lang="en" class="no-js">

<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-
scale=1, maximum-scale=1">
<meta name="description" content="">
<meta name="author" content="">

<title>Search for Salon | Admin Login</title>


<link rel="stylesheet" href="css/font-awesome.min.css">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/dataTables.bootstrap.min.css">
<link rel="stylesheet" href="css/bootstrap-social.css">
<link rel="stylesheet" href="css/bootstrap-select.css">
<link rel="stylesheet" href="css/fileinput.min.css">
<link rel="stylesheet" href="css/awesome-bootstrap-checkbox.css">
<link rel="stylesheet" href="css/style.css">
</head>

<body>

<div class="login-page bk-img" style="background-image: url(img/login-


bg.jpg);">
<div class="form-content">
<div class="container">
<div class="row">
<div class="col-md-6 col-md-offset-3">
<h1 class="text-center text-bold text-light mt-4x">Sign
in</h1>
<div class="well row pt-2x pb-3x bk-light">
<div class="col-md-8 col-md-offset-2">
<form method="post">

<label for="" class="text-uppercase text-


sm">Admin Username </label>
<input type="text" placeholder="Username"
name="username" class="form-control mb">

<label for="" class="text-uppercase text-


sm">Password</label>
<input type="password" placeholder="Password"
name="password" class="form-control mb">

<button class="btn btn-primary btn-block"


name="login" type="submit">LOGIN</button>

</form>
</div>
</div>
<div class="text-center text-light">
<a href="#" class="text-light">Forgot password?</a>
</div>
</div>
</div>
</div>
</div>
</div>

<!-- Loading Scripts -->

</body>

</html>

You might also like