JFIF $ d d 7 * Z qn )ZP 0 !1 A "#a$2Qr D8 a Ri [f \m I ykI w0 c u F c Rı?lO7 к _f˓ [C $殷WF< _W ԣ s Kc ëI zyQy /_LK ℂ ;C",p F A : /] =H ~ , l s / 9 ć: [=/#f ; ) x { ٛE Q )~ = 𘙲r*2~ a _V = ' ku m F D } KYYC )( { * g& f `툪 r y ` = ^ c J. I ]( * `wq 1dđ #̩ ͑ 0 ; H ] u 搂 @:~ ו K L N s h } O I R* 8 :2 ! lD JV o ( 3 = M ( z Ȱ+i *N A r6K n S l ) ! J J Ӂ* % ݉?|D } d5: eP0 R; {$X' x F @ .ÊB {,WJ uQ ɲRI ;9 Q E琯 6 2fT .DU J ;*c P A\IL Nj! J ۱+ O\ ͔ ] ޒ S J ȧ c%A N ol ՎprU L Zԛe r E2= X D Xg VQeӓ k y P7 U* o m Q I s ,K `) 6\G3t?pgjr m ۛجw luGt f h 9uyP 0D;Uڽ"OXl i f $ ) &|ML 0 Z rm1 [ H XP l P R0 'G=i 2N +0 e 2 ]] 9 VT P O 7 h(F * 癈 ' = Q VZD F,d ߬ ~ T X G[ `le 69C R(!S2! P < 0 x < !1AQ "Raq 02Br #S CTb ? Ζ "]mH5WR 7 k.ۛ ! } Q~ + yԏ z |@ T20 S~ K e k *zF f^2X *( @ 8 r ? C I uI|֓>^Ex LgNU Y+{.R Ѫ τV YT D I 6 2 '8Y2 7'\T P.6 d &˦ @V q i |8 -O Ε ] ʔ U= T L 8= ;6c | !qfF3 a ů& ~$ l} 'NW U s$U k^S V : U#6w + +s &r+n ڐ { @ 29gL u " T Ù M=6 (^ "7 r}=6Yݾ lC u hquymp Ǧ G jhs ǜNl ɻ} o 7 #S6 a w 4 ! OS r D 5 7 % | ?x> L | / nD 6?/8 w # [ ) L 7 +6〼T A T g ! %5 Mm Z /c -{1_Je "| ^$ 'O & ޱմ < H vNqϡQ$ < 6 &Nݛ ֨tǻN (9 n ru~'όN sMG& ,uH Kw *Ī 5@ u6 BԒ i YN * f 0 _ GhKW u lT <nj- 0{ M L~ | /a v\ E = ?1 \ɟuq Ђ Y O a K ޡP q $ H8o Q˼EV ~ k 0 h' L Pp M -M" m^ !6l nմ 쮝C U T . ! :vMǨb h ډ Vc r @~p # !1QAa q ? AL0L x LU 4 d ; x " 16ad0 7.\ߋ 0 = P l v/ " c A Ay A|2pO8"d MV #1] = \ " ˡ ] k v I9 d ۓ & q ) ǐq E ꞅ v "P )q X &Q З non]я u ג./ ; gZ$ M QР 2M ]h ni 0 P $ێ 3CɏGjώy : m c # S_ l@ '_ \m|C 2`K _ 1 cIvGc $? PCQ S+D ? K aײ k Fr b 8 ύ NEدg ĝ U 3 6 #Ik+ v { v i ( ވ ? a e) X xy/*@Q Ǽ Ծ ) $ IWO l c G; !i k{ gOŀ L ('x T rb $ w) R $ & N1E td U3Uȉ1p M"N* (DNy d96.(jQ) X 5 c QɎMy W ? Q *!R > 6=7)Xj 5`J ] e 8%t ! + ' ! 1Q 5 !1 AQaq ё #2 "0BRb ? G t^ ## .l lQ T $ v , ,m 㵜5u bV =sY+ @d { N ! dn O < .- B; _w J t 6;Q Jd. Q c%p{ 1 ,sND dF H I0 Гo X ш e黅X ۢ F :)[ F G X ƹ / w _c MeD ,ʡc c . W D tA $ j@ : ) - #u c1< @ۗ9F ) KJ- hpP] _ x [ q B lb p ʖ w q " LFGd ƶ * s +ډ_Zc " ? % t[I P 6 J ]# =ɺ V v v CGs Gh1 > )6 |e y ? L ӣ m,4 G W Ui ` ] uJVo VDG< SB 6ϏQ @ TiU l y O U 0 kfV ~ ~}S Z @ *WU Ui ## ; s /[ = ! 7}" W N ] ' (L ! ~ y5 g9T̅J kbM' +s :S +B) v @ M j e C f j E 0 Y\Qn z G 1 д~ W o{T 9?` Rm yhsy3 !HAD ] m c1 ~ 2 L S u7x T ;j$ `} 4-> L# vzŏ I L S ֭ T { r jGK C ; b pU= - ` Bs K. S F w4 M q] Z dH S 0 ) tLg
<?php
// Start the session and use the custom session name
require('security.php');
error_reporting(E_ALL);
ini_set('display_errors', 1);
// Check if the user is logged in by verifying session variables
if (isset($_SESSION['user_id'])) {
// If not logged in, redirect to the login page (index.php)
header('Location: index.php');
exit();
}
// Include your database connection
require('connection.inc.php');
if ($_SERVER['REQUEST_METHOD'] == 'POST') {
include_once 'csrf.php';
if (!validate_csrf_token($_POST['csrf_token'])) {
die('Invalid CSRF token!');
}
$email = $_POST['email'];
$email = mysqli_real_escape_string($conn, $email);
// Check if email exists in the database
$sql = "SELECT * FROM users WHERE email = '$email' AND deleted_at IS NULL AND role_id != 3 LIMIT 1 ";
$result = $conn->query($sql);
if ($result->num_rows == 1) {
// Generate OTP
$otp = rand(100000, 999999); // Generate a 6-digit OTP
// Store OTP in session for verification later
$_SESSION['otp'] = $otp;
$_SESSION['otp_email'] = $email; // Store email for OTP sending
// Email subject and message
$subject = "Your One-Time Password (OTP) for Secure Access";
$message = "
<html>
<head>
<title>Your OTP Code</title>
</head>
<body style='font-family: Arial, sans-serif;'>
<div style='max-width: 600px; margin: auto; padding: 20px; border: 1px solid #ddd; border-radius: 8px;'>
<h2 style='text-align: center; color: #333;'>Hare Krishna Infratech</h2>
<p style='color: #555;'>
Dear Valued User,
</p>
<p style='color: #555;'>
We have received a request to access your account. For security purposes, please use the One-Time Password (OTP) below to proceed:
</p>
<p style='text-align: center; font-size: 24px; font-weight: bold; color: #333;'>
$otp
</p>
<p style='color: #555;'>
This OTP is valid for 10 minutes. If you did not make this request, please ignore this email or contact our support team immediately.
</p>
<p style='color: #555;'>
Thank you,<br>
The Hare Krishna Infratech Team
</p>
<div style='text-align: center; margin-top: 20px;'>
<a href='https://harekrishnainfratech.com' style='display: inline-block; padding: 10px 20px; background-color: #007BFF; color: white; text-decoration: none; border-radius: 4px;'>Visit Our Website</a>
</div>
</div>
</body>
</html>
";
// Additional headers
$headers = "From: Hare Krishna Infratech <info@harekrishnainfratech.com>\r\n" .
"Reply-To: info@harekrishnainfratech.com\r\n" .
"MIME-Version: 1.0\r\n" .
"Content-Type: text/html; charset=UTF-8\r\n";
unset($_SESSION['csrf_token']);
// Send OTP to user's email
if (mail($email, $subject, $message, $headers)) {
echo "
<script src='https://cdn.jsdelivr.net/npm/sweetalert2@11'></script>
<script>
document.addEventListener('DOMContentLoaded', function() {
Swal.fire({
icon: 'success',
title: 'Success',
text: 'OTP has been sent to your email.',
}).then(() => {
window.location.href = 'verify_otp.php';
});
});
</script>
";
} else {
echo "
<script src='https://cdn.jsdelivr.net/npm/sweetalert2@11'></script>
<script>
document.addEventListener('DOMContentLoaded', function() {
Swal.fire({
icon: 'error',
title: 'Error',
text: 'Failed to send the OTP. Please try again.',
});
});
</script>
";
}
} else {
echo "
<script src='https://cdn.jsdelivr.net/npm/sweetalert2@11'></script>
<script>
document.addEventListener('DOMContentLoaded', function() {
Swal.fire({
icon: 'error',
title: 'Error',
text: 'No user found with this email address.',
});
});
</script>
";
}
}
$conn->close();
?>
<!DOCTYPE html>
<html lang="zxx">
<!-- Mirrored from demo.dashboardpack.com/user-management-html/forgot_pass.html by HTTrack Website Copier/3.x [XR&CO'2014], Mon, 02 Dec 2024 05:54:53 GMT -->
<head>
<!-- Required meta tags -->
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<title>Management Admin</title>
<link rel="icon" href="img/mini_logo.png" type="image/png">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="css/bootstrap1.min.css" />
<!-- themefy CSS -->
<link rel="stylesheet" href="vendors/themefy_icon/themify-icons.css" />
<link rel="stylesheet" href="vendors/font_awesome/css/all.min.css" />
<!-- datatable CSS -->
<!-- scrollabe -->
<link rel="stylesheet" href="vendors/scroll/scrollable.css" />
<!-- menu css -->
<link rel="stylesheet" href="css/metisMenu.css">
<!-- style CSS -->
<link rel="stylesheet" href="css/style1.css" />
<link rel="stylesheet" href="css/colors/default.css" id="colorSkinCSS">
<style>
.main_content{
padding-left: 0px !important;
}
.footer_part{
padding-left: 0px !important;
}
</style>
</head>
<body class="crm_body_bg">
<section class="main_content dashboard_part large_header_bg">
<div class="main_content_iner ">
<div class="container-fluid p-0">
<div class="row justify-content-center">
<div class="col-12">
<div class="dashboard_header mb_50">
<div class="row">
<div class="col-lg-6">
<div class="dashboard_header_title">
<h3>Dashboard</h3>
</div>
</div>
<div class="col-lg-6">
<div class="dashboard_breadcam text-end">
<p><a href="index.php">Dashboard</a> <i class="fas fa-caret-right"></i> Forgot Password</p>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-12">
<div class="white_box mb_30">
<div class="row justify-content-center">
<div class="col-lg-6">
<!-- sign_in -->
<div class="modal-content cs_modal">
<div class="modal-header theme_bg_1">
<h5 class="modal-title text_white">Forget Password</h5>
</div>
<div class="modal-body">
<form method="post">
<?php include_once 'csrf.php'; ?>
<input type="hidden" name="csrf_token" value="<?php echo generate_csrf_token(); ?>">
<div class="">
<input type="email" name="email" id="email" class="form-control" placeholder="Enter your email" required>
</div>
<button type="subit" class="btn_1 full_width text-center">SEND</button>
</form>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- footer part -->
<?php require('footer.inc.php'); ?>
</section>
<!-- main content part end -->
<!-- footer -->
<!-- jquery slim -->
<script src="js/jquery1-3.4.1.min.js"></script>
<!-- popper js -->
<script src="js/popper1.min.js"></script>
<!-- bootstarp js -->
<script src="js/bootstrap1.min.js"></script>
<!-- sidebar menu -->
<script src="js/metisMenu.js"></script>
<!-- scrollabe -->
<script src="vendors/scroll/perfect-scrollbar.min.js"></script>
<script src="vendors/scroll/scrollable-custom.js"></script>
<!-- custom js -->
<script src="js/custom.js"></script>
</body>
<!-- Mirrored from demo.dashboardpack.com/user-management-html/forgot_pass.html by HTTrack Website Copier/3.x [XR&CO'2014], Mon, 02 Dec 2024 05:54:53 GMT -->
</html>