GIF89a
<?php ob_start(); ini_set('error_reporting', E_STRICT); include("connect.php"); include("libs.php"); mysqli_set_charset($conn,'utf8'); date_default_timezone_set('Asia/Kolkata'); if($_COOKIE["user_id"]<>"") { echo '<script>window.location.href="log.php";</script>'; } else { ?> <!DOCTYPE html> <html> <?php include'head.php'; ?> <body> <style type="text/css"> #mobb{ padding-left: 35px; background-image: url(assest/images/mobile.png); background-position: 9px 13px; background-repeat: no-repeat; } </style> <section style=""> <div class="container"> <div class="row d-flex justify-content-center"> <div class="col-xs-5 col-sm-8 col-md-8 col-lg-6 col-xl-4"> <div id="" class="carousel slide" data-bs-ride="carousel"> <div class="carousel-inner"> <?php $c1=0; $sqlCI="SELECT * FROM `subCat`"; $rsCI=mysqli_query($conn,$sqlCI); while($rowCI=mysqli_fetch_array($rsCI)){ $c1=$c1+1; if($c1==1) { ?> <div class="carousel-item active"> <div class="baning"> <img src="../admin.cpanel/<?php echo $rowCI['subcat_icon']; ?>" class="img mx-auto d-flex" style="max-width:140px ; height:140px;"> <h6 class="d-flex justify-content-center mt-1"><?php echo loadTagLine($c1); ?></h6> </div> </div> <?php } else { ?> <div class="carousel-item"> <div class="baning"> <img src="../admin.cpanel/<?php echo $rowCI['subcat_icon']; ?>" class="img mx-auto d-flex" style="max-width:140px ; height:140px;"> <h6 class="d-flex justify-content-center mt-1"><?php echo loadTagLine($c1); ?></h6> </div> </div> <?php } } ?> </div> </div> <!-- carousel end --> <div class="row"> <div class="col-sm-12 col-xs-12"> <div class="form-group my-2"> <input type="number" class="form-control py-3 rounded-pill shadow" id="mobb" placeholder="Mobile Number" aria-describedby="" onkeypress="checkMobb('mobb')"> </div> <div class="form-group"> <input type="password" class="form-control py-3 rounded-pill shadow" id="pwdd" placeholder="Password" aria-describedby="" > </div> </div> </div> <div class="row"> <div class="col-sm-12 col-xs-12"> <div class="d-grid mt-5"> <button class="btn btn-dark py-2 fs-6 rounded-pill" type="button" onclick="login()"><i class="bi bi-shield-fill-check px-2 text-white"></i><span class="fs-5 text-white">Proceed Securely</span></button> </div> <div class="d-flex justify-content-center mb-3 mb-lg-4"> <span><a href="" class="text-decoration-none d-flex justify-content-center my-2"> By Clicking, I accept T&C and Privacy</a></span> </div> <div class="d-flex justify-content-center my-2 mb-lg-4"> <span class="fs-6">If You are new ?<a href="signUp.php" class="text-decoration-none fs-6"> Register Here</a></span> </div> </div> </div> </div> </div> </div> </section> </body> </html> <?php } ?> <div id="snackbar"><span id="snack_msgg" style="color: white"></span></div>