Server IP : 103.53.40.154 / Your IP : 3.15.239.145 Web Server : Apache System : Linux md-in-35.webhostbox.net 4.19.286-203.ELK.el7.x86_64 #1 SMP Wed Jun 14 04:33:55 CDT 2023 x86_64 User : ppcad7no ( 715) PHP Version : 8.2.25 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0755) : /home2/ppcad7no/designexstone.in/../hakkipikiadivasi.com/../shsindia.com/crm/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
<?php include_once('include/config.php'); if (!isLoggedIn()) { $_SESSION['msg'] = "You must log in first"; header('location: login.php'); } if (!isAdmin()) { $_SESSION['msg'] = "You are not Admin"; header('location: login.php'); } if(isset($_POST['submit'])) { $name = $_POST['name']; $email = $_POST['email']; $phone = $_POST['phone']; } ?> <?php $sqlprof = "SELECT * FROM login_tbl WHERE id='2'"; $runprof = mysqli_query($db,$sqlprof) or die("Query Not run"); $dataprof = mysqli_fetch_assoc($runprof); ?> <!DOCTYPE html> <html lang="en"> <head> <?php include "top-links.php";?> </head> <body> <!-- Begin page --> <div class="wrapper"> <?php include "header.php";?> <?php include "sidebar.php";?> <div class="content-page"> <div class="content"> <?php echo'<h1 class="page-title" style="text-align:center; padding-top:30px;">Coming Soon! </h1>'; echo'<h4 class="page-title" style="text-align:center;">This Section is under construction.</h4>'; exit; ?> <!-- Start Content--> <div class="container-fluid"> <!-- start page title --> <div class="row"> <div class="col-sm-12"> <!-- meta --> <div class="profile-user-box" style="margin-top: 0px;"> <div class="row"> <div class="col-sm-6"> <div class="profile-user-img"> <img src="images/<?php echo $dataprof['profile'];?>" alt="" style="background: #1a2942;"> <!--<img src="" alt="" class="avatar-lg rounded-circle">--> </div> <div class=""> <h4 class="mt-4 fs-17 ellipsis"><?php echo $dataprof['name'];?></h4> </div> </div> </div> </div> <!--/ meta --> </div> </div> <!-- end row --> <div class="row"> <div class="col-sm-12"> <div class="card p-0"> <div class="card-body p-0"> <div class="profile-content"> <ul class="nav nav-underline nav-justified gap-0"> <li class="nav-item"><a class="nav-link active" data-bs-toggle="tab" data-bs-target="#aboutme" type="button" role="tab" aria-controls="home" aria-selected="true" href="#aboutme">About</a> </ul> <div class="tab-content m-0 p-4"> <div class="tab-pane active" id="aboutme" role="tabpanel" aria-labelledby="home-tab" tabindex="0"> <div class="profile-desk"> <h5 class="mt-4 fs-17 text-dark">Billing Information</h5> <table class="table table-condensed mb-0 border-top"> <tbody> <tr> <th scope="row">Email</th> <td> <?php echo $dataprof['email'];?> </td> </tr> <tr> <th scope="row">Phone</th> <td class="ng-binding"><?php echo $dataprof['phone'];?></td> </tr> <tr> <th scope="row">Address</th> <td> <?php echo $dataprof['address'];?> </td> </tr> <tr> <th scope="row">GST No.</th> <td> <?php echo $dataprof['gst'];?> </td> </tr> <tr> <th scope="row">Bank Name</th> <td> <?php echo $dataprof['bank_name'];?> </td> </tr> <tr> <th scope="row">Account No.</th> <td> <?php echo $dataprof['bank_number'];?> </td> </tr> <tr> <th scope="row">Branch Name</th> <td> <?php echo $dataprof['bank_branch'];?> </td> </tr> <tr> <th scope="row">IFSC </th> <td> <?php echo $dataprof['bank_ifsc'];?> </td> </tr> <tr> <!--<th scope="row">Edit Company </th>--> <th> <a href="#"><button class="btn btn-primary" type="submit" name="submit"><i class="ri-save-line me-1 fs-16 lh-1"></i> Edit Bill</button></a> </th> </tr> </tbody> </table> </div> <!-- end profile-desk --> </div> <!-- about-me --> </div> </div> </div> </div> </div> </div> <!-- end page title --> </div> <!-- end row --> </div> <!-- container --> </div> </div> <script> function togglePasswordVisibility() { var passwordField = document.getElementById('password'); var passwordToggle = document.getElementById('password-toggle'); if (passwordField.type === 'password') { passwordField.type = 'text'; passwordToggle.className = 'ri-eye-line fs-22'; } else { passwordField.type = 'password'; passwordToggle.className = 'ri-eye-off-line fs-22'; } } </script> <?php include "footer.php";?> </body> </html>