first commit

This commit is contained in:
pakerpale
2020-06-10 06:21:34 +09:00
commit 20c9739ba9
1913 changed files with 266257 additions and 0 deletions

View File

@@ -0,0 +1,67 @@
<?php echo $header; ?>
<div class="container-fluid">
<div class="row">
<div class="col-lg-8">
<h1 class="page-header">
<?php echo $this->lang->line('user_header'); ?>
</h1>
</div>
<div class="col-lg-4">
<div class="container-fluid">
<form action="">
<div class="input-group searchContainer">
<input type="text" class="form-control" id="searchString" name="term">
<span class="input-group-btn">
<button class="btn btn-default" id="searchBtn" type="submit"><span
class="fa fa-search"></span></button>
</span>
</div><!-- /input-group -->
</form>
</div>
</div>
<div class="col-lg-12">
<ol class="breadcrumb">
<li>
<i class="fa fa-dashboard"></i>
<a href="<?php echo BASE_URL; ?>/admin"><?php echo $this->lang->line('nav_dash'); ?></a>
</li>
<li class="active">
<i class="fa fa-fw fa-user"></i>
<a href="<?php echo BASE_URL; ?>/admin/users"><?php echo $this->lang->line('user_header'); ?></a>
</li>
</ol>
</div>
</div>
</div>
<div class="container-fluid">
<div class="row">
<div class="col-md-12">
<table class="table table-striped table-bordered">
<thead>
<tr>
<th> <?php echo $this->lang->line('user_username'); ?> </th>
<th> Group </th>
<th> <?php echo $this->lang->line('user_email'); ?> </th>
<th class="td-actions"> </th>
</tr>
</thead>
<tbody id="userContainer">
<?php
foreach ($users as $u) {
echo '<tr>';
echo '<td>'.$u['userName'].'</td>';
echo '<td>'.$u['groupName'].'</td>';
echo '<td>'.$u['email'].'</td>';
echo '<td class="td-actions"><a href="'.BASE_URL.'/admin/users/edit/'.$u['userID'].'" class="btn btn-small btn-success"><i class="fa fa-pencil"> </i></a> <a data-toggle="modal" data-target="#ajaxModal" class="btn btn-danger btn-small" href="'.BASE_URL.'/admin/users/delete/'.$u['userID'].'"><i class="fa fa-remove"> </i></a></td>';
echo '</tr>';
} ?>
</tbody>
</table>
<?php echo $this->pagination->create_links(); ?>
</div>
</div>
</div>
<?php echo $footer; ?>