MOON
Server: Apache
System: Linux e2e-78-16.ssdcloudindia.net 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
User: imensosw (1005)
PHP: 8.0.30
Disabled: exec,passthru,shell_exec,system
Upload Files
File: /home/imensosw/www/imenso.co/dev/ultron/timesheet.php
<!doctype html>
<html lang="en-US" >
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="profile" href="http://gmpg.org/xfn/11">
<title>Ultron | Imenso Software </title>
<link rel='stylesheet' href='css/bootstrap.min.css'  media='all' />
<link rel='stylesheet' href='css/style.css'  media='all' />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.css"  media="all">
<link href="https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600&display=swap" rel="stylesheet">
<link href="https://unpkg.com/gijgo@1.9.13/css/gijgo.min.css" rel="stylesheet" type="text/css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-multiselect/0.9.13/css/bootstrap-multiselect.css" />
</head>
<body>

<?php include('sidebar.php');?>
<?php include('header.php');?>
  

  <main class="offset">
    <div class="container-fluid hard-pad">
      <div class="row align-items-center pt-4 border-mobile">
        <div class="col-lg-4 col-6">
          <h2 class="page-heading"> Timesheet </h2>
        </div>       
      </div>

      <div class="row align-items-center pt-4 border-mobile">
        <div class="col-md-3 emp_list">
          <div class="filter-dd dropdown">       
              <a class="dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">              
                <span class="hide-mobile">Mahesh Parihar</span>
              </a>
              <div class="dropdown-menu" aria-labelledby="navbarDropdown">
                <a class="dropdown-item" href="#">John Doe</a>
                <a class="dropdown-item" href="#">Jane Doe</a>
                <a class="dropdown-item" href="#">Ross Tailor</a>
              </div>
            </div>
          </div>
        <div class="col-md-7">
          <span class="timesheet_date f-bold">14, Jul 2022, Thursday</span>
        </div>
        <div class="col-md-2 text-right">
          <span class="f-bold day_total_time"><h3 class="mb-0">8 <small>Hrs</small></h3></span>
        </div>
      </div>
      
      <div id="table-scroll" class="table-scroll timesheet_table mt-4">
        <table id="main-table" class="main-table">
            <!-- <div class="timesheet_date grey-bg py-2 px-3"><strong>12 July 2022</strong></div> -->
            <thead class="grey-bg">
              <tr class="grey-bg">
                <th class="grey-bg" scope="col" width="250"><span class="text_secondary f-bold">Imenso Website</span></th>     <th class="grey-bg text-center" scope="col" width="500">Description</th>
                <th class="grey-bg text-right" scope="col" width="100">Time Spent</th>            
              </tr>
            </thead>
            <tbody>
              <tr>
                  <td>First module name</td>         
                  <td><textarea class="form-control description_textarea h-30 font-sm" id="" name="" placeholder=""></textarea></td>
                  <td><input type="number" class="form-control h-30 font-sm" id="" placeholder=""></td>         
              </tr>
              <tr>
                  <td>Second module name</td>         
                  <td><textarea class="form-control description_textarea h-30 font-sm" id="" name="" placeholder=""></textarea></td>
                  <td><input type="number" class="form-control h-30 font-sm" id="" placeholder=""></td>         
              </tr>
          </tbody>
        </table>
      </div>

      <div id="table-scroll" class="table-scroll timesheet_table mt-4">
        <table id="main-table" class="main-table">
            <!-- <div class="timesheet_date grey-bg py-2 px-3"><strong>12 July 2022</strong></div> -->
            <thead class="grey-bg">
              <tr class="grey-bg">
                <th class="grey-bg" scope="col" width="250"><span class="text_secondary f-bold">Ultron</span></th>     <th class="grey-bg text-center" scope="col" width="500">Description</th>
                <th class="grey-bg text-right" scope="col" width="100">Time Spent</th>            
              </tr>
            </thead>
            <tbody>
              <tr>
                  <td>First module name</td>         
                  <td><textarea class="form-control description_textarea h-30 font-sm" id="" name="" placeholder=""></textarea></td>
                  <td><input type="number" class="form-control h-30 font-sm" id="" placeholder=""></td>         
              </tr>
              <tr>
                  <td>Second module name</td>         
                  <td><textarea class="form-control description_textarea h-30 font-sm" id="" name="" placeholder=""></textarea></td>
                  <td><input type="number" class="form-control h-30 font-sm" id="" placeholder=""></td>         
              </tr>
          </tbody>
        </table>
      </div>

      <div id="table-scroll" class="table-scroll timesheet_table mt-4">
        <table id="main-table" class="main-table">
            <!-- <div class="timesheet_date grey-bg py-2 px-3"><strong>12 July 2022</strong></div> -->
            <thead class="grey-bg">
              <tr class="grey-bg">
                <th class="grey-bg" scope="col" width="250"><span class="text_secondary f-bold">Other Task</span></th>     <th class="grey-bg text-center" scope="col" width="500">Description</th>
                <th class="grey-bg text-right" scope="col" width="100">Time Spent</th>            
              </tr>
            </thead>
            <tbody>
              <tr>
                  <td>Other Task</td>         
                  <td><textarea class="form-control description_textarea h-30 font-sm" id="" name="" placeholder=""></textarea></td>
                  <td><input type="number" class="form-control h-30 font-sm" id="" placeholder=""></td>         
              </tr>
          </tbody>
        </table>
      </div>
      <div class="row mt-4">
        <div class="col-lg-12 text-right">
          <a href="" class="btn btn-primary">Submit</a>
        </div>
      </div>

</div>

</main>

<div class="right-aside">
  <p class="mt-5 text-center">Time Summary</p>
  
  <div class="stats mt-3">
    <div class="stats-big">30 hr</div>
    <div class="stats-small">Imenso Website</div>    
  </div>
  <div class="stats mt-3">
    <div class="stats-big">20 hr</div>
    <div class="stats-small">Ultron</div>    
  </div>
  <div class="stats mt-3">
    <div class="stats-big">12 hr</div>
    <div class="stats-small">Other Work</div>    
  </div>
  
</div>

<!-- Add Modal -->
<div class="modal fade full-width half_width_modal project_modal" data-backdrop="static" id="addProject" tabindex="-1" role="dialog" aria-labelledby="" aria-hidden="true">
  <div class="modal-dialog" role="document">
    <div class="modal-content">
      <div class="modal-header">
        <h5 class="modal-title" id="">Add Today's Work</h5>
        <button type="button" class="close" data-dismiss="modal" aria-label="Close">
          <span aria-hidden="true">&times;</span>
        </button>
      </div>
      <div class="modal-body">
        <form class="">
          <div class="form-group">
            <label>Select Project</label>
            <select class="chosen-select">
              <option>Ultron</option>
              <option>Imenso Website</option>
              <option>Imenso Portal</option>
            </select>
          </div>

          <div class="form-group">
            <label for="">Task</label>
            <div class="milestone-field">
                <div class="entry input-group">
                  <input class="form-control task_field" name="fields[]" type="text" placeholder="Task" />
                  <input type="text" class="form-control" id="" placeholder="Time spent">
                  <span class="input-group-btn">
                    <button class="btn btn-green-light btn-add" type="button">
                            <span class="fa fa-plus"></span>
                    </button>
                  </span>
                </div>
            </div>
          </div>

          <div class="form-group">
            <label for="">Remark</label>
            <textarea class="form-control" rows="3" placeholder=""></textarea>
          </div> 
        </form>
      </div>
      <div class="modal-footer">
        <a href="" class="btn btn-secondary" data-dismiss="modal">Cancel</a>
        <a href="" class="btn btn-primary">Submit</a>
      </div>
    </div>
  </div>
</div>
  


<?php include("footer.php");?>


</body>
</html>