90 lines
3.7 KiB
PHP
90 lines
3.7 KiB
PHP
<link rel="stylesheet" href="<?php echo base_url(); ?>assets/plugins/datepicker/datepicker3.css" />
|
|
<div class="content-wrapper">
|
|
<!-- Content Header (Page header) -->
|
|
<section class="content-header">
|
|
<h1>
|
|
<i class="fa fa-users"></i> Login History
|
|
<small>track login history</small>
|
|
</h1>
|
|
</section>
|
|
<section class="content">
|
|
<div class="row">
|
|
<form action="<?php echo base_url() ?>login-history" method="POST" id="searchList">
|
|
<div class="col-md-2 col-md-offset-4 form-group">
|
|
<input for="fromDate" type="text" name="fromDate" value="<?php echo $fromDate; ?>" class="form-control datepicker" placeholder="From Date"/>
|
|
</div>
|
|
<div class="col-md-2 form-group">
|
|
<input id="toDate" type="text" name="toDate" value="<?php echo $toDate; ?>" class="form-control datepicker" placeholder="To Date"/>
|
|
</div>
|
|
<div class="col-md-3 form-group">
|
|
<input id="searchText" type="text" name="searchText" value="<?php echo $searchText; ?>" class="form-control" placeholder="Search Text"/>
|
|
</div>
|
|
<div class="col-md-1 form-group">
|
|
<button type="submit" class="btn btn-md btn-default btn-block searchList pull-right"><i class="fa fa-search"></i></button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
<div class="row">
|
|
<div class="col-xs-12">
|
|
<div class="box">
|
|
<div class="box-header">
|
|
<h3 class="box-title"><?= $userInfo->name." : ".$userInfo->email ?></h3>
|
|
<div class="box-tools">
|
|
</div>
|
|
</div><!-- /.box-header -->
|
|
<div class="box-body table-responsive no-padding">
|
|
<table class="table table-hover">
|
|
<tr>
|
|
<th>Session Data</th>
|
|
<th>IP Address</th>
|
|
<th>User Agent</th>
|
|
<th>Agent Full String</th>
|
|
<th>Platform</th>
|
|
<th>Date-Time</th>
|
|
</tr>
|
|
<?php
|
|
if(!empty($userRecords))
|
|
{
|
|
foreach($userRecords as $record)
|
|
{
|
|
?>
|
|
<tr>
|
|
<td><?php echo $record->sessionData ?></td>
|
|
<td><?php echo $record->machineIp ?></td>
|
|
<td><?php echo $record->userAgent ?></td>
|
|
<td><?php echo $record->agentString ?></td>
|
|
<td><?php echo $record->platform ?></td>
|
|
<td><?php echo $record->createdDtm ?></td>
|
|
</tr>
|
|
<?php
|
|
}
|
|
}
|
|
?>
|
|
</table>
|
|
|
|
</div><!-- /.box-body -->
|
|
<div class="box-footer clearfix">
|
|
<?php echo $this->pagination->create_links(); ?>
|
|
</div>
|
|
</div><!-- /.box -->
|
|
</div>
|
|
</div>
|
|
</section>
|
|
</div>
|
|
<script src="<?php echo base_url(); ?>assets/plugins/datepicker/bootstrap-datepicker.js"></script>
|
|
<script type="text/javascript">
|
|
jQuery(document).ready(function(){
|
|
jQuery('ul.pagination li a').click(function (e) {
|
|
e.preventDefault();
|
|
var link = jQuery(this).get(0).href;
|
|
jQuery("#searchList").attr("action", link);
|
|
jQuery("#searchList").submit();
|
|
});
|
|
|
|
jQuery('.datepicker').datepicker({
|
|
autoclose: true,
|
|
format : "dd-mm-yyyy"
|
|
});
|
|
});
|
|
</script>
|