Server IP : 162.214.80.37 / Your IP : 216.73.216.83 Web Server : Apache System : Linux sh013.webhostingservices.com 4.19.286-203.ELK.el7.x86_64 #1 SMP Wed Jun 14 04:33:55 CDT 2023 x86_64 User : imyrqtmy ( 2189) PHP Version : 8.2.18 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0750) : /home2/imyrqtmy/public_html/eventsbyshubhchintak/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
<?php include'includes/db-conn.inc.php'; if(!isset($_SESSION['customer_id'])){ echo "<script>window.location = 'index.php';</script>"; } $userid=$_SESSION['customer_id']; $sqluser=mysqli_query($conn,"select * from tbl_user where userid='$userid' and status='1'")or die(mysqli_error()); $rowuser=mysqli_fetch_assoc($sqluser); ?> <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <!-- Libs --> <link rel="stylesheet" href="assets/libs/bootstrap-icons/font/bootstrap-icons.css"> <link rel="stylesheet" href="assets/fonts/wedding-icon-font/flaticon.css"> <link rel="stylesheet" href="assets/fonts/fontello/css/fontello.css"> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script> <script src="https://cdn.jsdelivr.net/npm/sweetalert2@11.7.21/dist/sweetalert2.all.min.js"></script> <link href="https://cdn.jsdelivr.net/npm/sweetalert2@11.7.21/dist/sweetalert2.min.css" rel="stylesheet"> <!-- Theme CSS --> <?php include 'includes/head.php'; ?> <link rel="stylesheet" href="assets/css/theme.min.css"> <title>User Dashboard | Wedding & Event by Shubhchintak</title> </head> <body> <?php include 'includes/navbar.php'; ?> <!-- sign up --> <main> <section class="pt-6 pb-4"> <div class="container"> <div class="row"> <div class="col-lg-12 col-md-12 col-12"> <div> <small style="color: #6b7280 !important;"><a href="index.php">Home ></a> Dashboard</small><br> <h4 class="display-5 fw-semi-bold mb-0" style="font-size: 24px;margin-top: 13px;">Shubhchintak's User Dashboard</h4> <small>Access Your Dashboard Here</small> </div> </div> </div> </div> </section> <section class="py-6 bg-light"> <div class="container"> <div class="row"> <div class="col-md-4 mt-6 mt-md-0"> <div class="card"> <div class="card-body"> <div class="mb-4"> <div class="mb-3"> <h3>Welcome <?php echo $rowuser['name']; ?> !</h3> </div> </div> <div class="d-grid"> <a href="dashboard.php" class="btn btn-sm btnactive active">Dashboard</a> </div><br> <div class="d-grid"> <a href="shortlist.php" class="btn btn-sm btnside">My Shortlist</a> </div><br> <div class="d-grid"> <a href="change-password.php" class="btn btn-sm btnside">Change Password</a> </div><br> <div class="d-grid"> <a href="logout.php" class="btn btn-sm btnside">Logout</a> </div> </div> </div> </div> <div class="col-md-8"> <div class="card mb-4"> <div class="row g-0"> <div class="col-xxl-12 col-lg-12"> <div class="position-relative"> <div> <a href="#"> <img src="assets/images/banner/dashboard.jpg" alt="vendor1" class="img-fluid rounded-start-lg rounded-top rounded-top-lg-0 w-100"> </a> </div> </div> </div> <div class="row"> <div class="col-md-4"> <center style="border: 1px solid lightgrey;border-radius: 4px;"><a href="shortlist.php"> <img src="assets/images/banner/favourite.png" alt="vendor1" class="img-fluid rounded-start-lg rounded-top rounded-top-lg-0 w-100" style="width: 113px !important;padding: 9px;"> </a></center> </div> <div class="col-md-4"> <center style="border: 1px solid lightgrey;border-radius: 4px;"><a href="change-password.php"> <img src="assets/images/banner/synchronize.png" alt="vendor1" class="img-fluid rounded-start-lg rounded-top rounded-top-lg-0 w-100" style="width: 113px !important;padding: 9px;"> </a></center> </div> <div class="col-md-4"> <center style="border: 1px solid lightgrey;border-radius: 4px;"><a href="logout.php"> <img src="assets/images/banner/check-out.png" alt="vendor1" class="img-fluid rounded-start-lg rounded-top rounded-top-lg-0 w-100" style="width: 113px !important;padding: 9px;"> </a></center> </div> </div> </div><br> </div> </div> </div> </div> </section> </main> <!-- scripts --> <?php include 'includes/footer.php'; ?> <script src="assets/libs/jquery/dist/jquery.min.js"></script> <script src="assets/libs/bootstrap/dist/js/bootstrap.bundle.min.js"></script> <script src="assets/libs/flatpickr/dist/flatpickr.min.js"></script> <!-- Theme JS --> <script src="assets/js/theme.min.js"></script> </body> </html>