0% found this document useful (0 votes)
12 views

Dashboard

Source code

Uploaded by

02mxles
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
12 views

Dashboard

Source code

Uploaded by

02mxles
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 4

div class=" has-feedback">

<input type="password" name="password" class="form-control"

placeholder="Login PIN">

<span class="glyphicon glyphicon-pushpin form-control-

feedback"></span> </div>

<button type="submit" class="btn btn-success btn-block btn-

flat">Sign

In</button>

</form>

</fieldset>

</div> </div>

DASHBOARD

<?php

defined('BASEPATH') OR exit('No direct script access allowed');

$this->load->view('themes/navbar');

$this->load->view('themes/sidebar');

?> <section class="content-header">

<h1> Dashboard

</h1> <ol class="breadcrumb">

<li><a href="#"><i class="fa fa-dashboard"></i> Home</a></li>


<li class="active">Dashboard</li> </ol>

</section>

<section class="content"> <div class="row">

<div class="col-md-12"> <div class="row">

<div class="col-md-6"> </div>

</div> <div class="box box-info">

<div class="box-header with-border"> <h3 class="box-

title">Site Back Up</h3> <div class="box-tools pull-right">

<button class="btn btn-box-tool" data-widget="collapse"><i

class="fa faminus"></i></button>

<button class="btn btn-box-tool" data-widget="remove"><i

class="fa fatimes"></i></button>

</div>

</div>

<div class="box">

<div class="box-header">

</div>

<form method="POST" action="<?=

base_url('backend/home/error');?>">
<div class="box-body">

<table id="datatables" class="table table-bordered

table-striped">

<thead>

<tr>

<th width="1%" align="left"><input type="checkbox"

name="chkall" id="chkall" onclick="return checkall('selector[]');"> </th>

<th>Error Type</th>

<th>Error Title</th>

<th>Location</th>

<th>Error Line</th>

<th>Time</th>

</tr>

</thead>

<tbody>

<?php foreach($error_log as $key => $value):

echo '<tr>

<td width="1%"><input

type="checkbox" name="selector[]" id="selector[]" value="'.$value->id.

'"/>
<td>'.$value->errtype.'</td>

<td>'.$value->errstr.'</td>

<td>'.$value->errfile.'</td>

You might also like