<?php include("includes/db_config.php"); ?> <!DOCTYPE html>
<html lang="en" dir="ltr" data-theme="light">
<meta http-equiv="content-type" content="text/html;charset=utf-8" />

<head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width,initial-scale=1">
    <?php include("includes/css.php");?>
    <style>
        .modal-body .form-label{font-weight:600;}.mt-35{margin-top:35px!important}.viewptdt .form-label{font-weight:600;}.viewptdt label{margin-top:10px;}.portlet-titles{padding: 15px 20px;font-size: 20px;border-radius: 10px;}.portlet-titles-icon{font-size: 40px;text-align: center}.srchdt label{font-weight: 600;font-size: 14px;margin-top: 10px;}
    </style>
</head>

<body class="preload-active aside-active aside-mobile-minimized aside-desktop-maximized">
    <div class="holder">
        <?php include("includes/sidebar.php");?>
        <div class="wrapper">
            <?php include("includes/header.php");?>
            <div class="content">
                <div class="container-fluid g-5">                    
                    <div class="row">
                         <div class="col-12">
                            <div class="portlet">
                                <div class="portlet-header portlet-header-bordered">
                                    <div class="col-md-12">
                                        <h3 class="portlet-title">Bank Statement</h3>
                                    </div> 
                                 </div>
                                <div class="row srchdt"> 
                                      
                                     <div class="col-md-3 col-12 col-xs-12" style="margin-left:15px;">
                                         <label><b>Bank Name</b></label>
                                         <select class="form-control">
                                             <option>Mohan Enterprises</option>
                                             <option>Raj Enterprises</option>
                                         </select>
                                    </div>
                                     <div class="col-md-2 col-12 col-xs-12" style="margin-left:15px;">
                                         <label><b>From</b></label>
                                       <input type="date" class="form-control">
                                    </div>
                                    <div class="col-md-2 col-12 col-xs-12">
                                        <label><b>To</b></label>
                                       <input type="date" class="form-control">
                                    </div> 
                                     <div class="col-md-2 col-12 col-xs-12"> 
                                       <input type="submit" class="btn btn-success btn-lg mt-35" value="Submit">
                                    </div>
                                    </div>  
                                   <div class="portlet-body table-responsive">
                                    <table id="datatable-1" class="table table-bordered table-striped table-hover">
                                        <thead>
                                             <tr>
                                                 <th>Date</th>
                                                <th>Description</th>
                                                 <th>Withdrawal Amount</th> 
                                                 <th>Deposit Amount</th> 
                                                 <th>Balance Amount</th> 
                                             </tr>
                                        </thead>
                                        <tbody> 
                                             <tr>
                                                <td>10-03-2025</td>  
                                                <td>Opening Balance</td>  
                                                <td> </td> 
                                                <td>₹ 3500.00</td>  
                                                <td>₹ 3500.00</td>  
                                              </tr>  
                                         </tbody>
                                        <tfoot>
                                        <tr>
                                            <th colspan="3"></th>
                                             <th><b>Balance</b></th>
                                             <th><b>₹ 3500.00</b></th>
                                            </tr>
                                        </tfoot>
                                    </table>
                                </div>
                            </div>
                        </div>
                    </div>
                </div>
            </div>       
           
            <?php include("includes/footer.php");?>
        </div>
    </div>
    <?php include("includes/js.php");?>
 
</body>
</html>