File "index.php"
Full path: /home/atrmarke/public_html/atrdemolive.site/diesel/index.php
File
size: 0.01 KB (7.24 KB bytes)
MIME-type: text/x-php
Charset: utf-8
Download Open Edit Advanced Editor Back
<?php
// Output buffering to prevent premature output
ob_start();
include("db/cn.php");
if ($_POST) {
// Securely fetch POST data
$name = mysqli_real_escape_string($connection, $_POST["name"]);
$password = mysqli_real_escape_string($connection, $_POST["password"]);
$outlet_name = mysqli_real_escape_string($connection, $_POST["outlet_name"]);
$outlet_address = mysqli_real_escape_string($connection, $_POST["outlet_address"]);
// Query the database
$query = "SELECT name, password, role, outlet_name, outlet_address FROM r_login WHERE name='$name'";
$result = mysqli_query($connection, $query);
// Check if user exists
if ($result && mysqli_num_rows($result) > 0) {
$row = mysqli_fetch_assoc($result);
// Assuming passwords are stored as plaintext in the database
if ($password == $row['password']) {
// Store user information in session variables
$_SESSION['user_name'] = $row['name'];
$_SESSION['user_role'] = $row['role'];
$_SESSION['outlet_name'] = $row['outlet_name'];
$_SESSION['outlet_address'] = $row['outlet_address'];
// Debugging: print session variables
echo "<pre>";
print_r($_SESSION);
echo "</pre>";
// Redirect based on role
if ($row['role'] == 'superadmin') {
header('Location: dashboard.php');
ob_end_flush();
exit();
} elseif ($row['role'] == 'admin') {
header('Location: log/mainpos.php');
ob_end_flush();
exit();
} else {
echo "Unknown role";
}
} else {
echo "Invalid password";
}
} else {
echo "User not found";
}
} else {
echo "";
}
ob_end_flush(); // End output buffering and send the output
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="">
<meta name="author" content="">
<title>Login - Petrol / Diesel Filling Station</title>
<!-- Custom fonts for this template-->
<link href="vendor/fontawesome-free/css/all.min.css" rel="stylesheet" type="text/css">
<link
href="https://fonts.googleapis.com/css?family=Nunito:200,200i,300,300i,400,400i,600,600i,700,700i,800,800i,900,900i"
rel="stylesheet">
<!-- Custom styles for this template-->
<link href="css/sb-admin-2.min.css" rel="stylesheet">
</head>
<style>
.bg-gradient-primary{
background: linear-gradient(270deg, #060606, #597445);
background-repeat:no-repeat;
background-size:cover;
background-attachment:fixed;
}
.btn-primary{
background: linear-gradient(270deg, #060606, #597445);
color:#fff;
border:none;
}
.btn-primary:hover{
background: linear-gradient(270deg, #597445, #060606);
color:#fff;
border:1px solid #000;
}
.logo-container {
display: inline-block;
animation: heartbeat 5s infinite;
}
@keyframes heartbeat {
0% {
transform: scale(1);
}
50% {
transform: scale(1.1);
}
100% {
transform: scale(1);
}
}
</style>
<body class="bg-gradient-primary">
<div class="container" style="margin-top:150px;">
<!-- Outer Row -->
<div class="row justify-content-center">
<div class="col-xl-10 col-lg-12 col-md-9">
<div class="card o-hidden border-0 shadow-lg my-5">
<div class="card-body p-0">
<!-- Nested Row within Card Body -->
<div class="row">
<div class="col-lg-6" style="background-color:none;">
<div class="p-5" style="background-color:none;">
<div class="text-center" style="font-weight:700;">
<h1 class="h4 mb-3 text-uppercase" style="font-size:21px; font-weight:800;color:#606060;">ALAMGIR FILLING STATION</h1>
</div>
<form class="user" action="index.php" method="post" enctype="multipart/form-data">
<div class="form-group">
<input type="text" class="form-control form-control-user"
name="name"
placeholder="Login Name">
</div>
<div class="form-group">
<input type="password" class="form-control form-control-user"
name="password" placeholder="Password">
</div>
<div class="form-group">
<div class="custom-control custom-checkbox small">
<input type="checkbox" class="custom-control-input" id="customCheck">
<label class="custom-control-label" for="customCheck">Remember
Me</label>
</div>
</div>
<button type="submit" class="btn btn-primary btn-user btn-block">
Login</button>
<hr>
</form>
</div>
</div>
<div class="col-lg-6 d-none d-lg-block ">
<br><br>
<center><div class="logo-container"><img src="img/print_logo1.png" class="img-fluid" width="200" width="200" ></div>
<br><br><br>
<p style="color:#B18B1F; font-size:16px; font-weight:600;">Powered By ATR Sales & Marketing Services</p>
</center>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Bootstrap core JavaScript-->
<script src="vendor/jquery/jquery.min.js"></script>
<script src="vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
<!-- Core plugin JavaScript-->
<script src="vendor/jquery-easing/jquery.easing.min.js"></script>
<!-- Custom scripts for all pages-->
<script src="js/sb-admin-2.min.js"></script>
</body>
</html>
<?php
?>