39 lines
1.2 KiB
PHP
39 lines
1.2 KiB
PHP
<?php
|
|
/**
|
|
* @package Generic CMS
|
|
*
|
|
* @created 3rd April 2022
|
|
* @author Llewellyn van der Merwe <https://git.vdm.dev/Llewellyn>
|
|
* @git WEBD-325-45 <https://git.vdm.dev/Llewellyn/WEBD-325-45>
|
|
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
|
*/
|
|
|
|
// No direct access to this file
|
|
defined('_WEBD') or die('Restricted access');
|
|
|
|
?>
|
|
<div class="uk-container uk-margin">
|
|
<h1 class="uk-article-title">Users</h1>
|
|
<table class="uk-table uk-table-justify uk-table-divider">
|
|
<thead>
|
|
<tr>
|
|
<th class="uk-width-small">Table Heading</th>
|
|
<th>Table Heading</th>
|
|
<th>Table Heading</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<td>Table Data</td>
|
|
<td>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</td>
|
|
<td><a class="uk-button uk-button-default" href="?view=edit">Edit</a></td>
|
|
</tr>
|
|
<tr>
|
|
<td>Table Data</td>
|
|
<td>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</td>
|
|
<td><a class="uk-button uk-button-default" href="?view=edit">Edit</a></td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
<!-- Source: https://getuikit.com/docs/table -->
|
|
</div>
|