first commit
This commit is contained in:
Executable
+24
@@ -0,0 +1,24 @@
|
||||
<?php defined('BASEPATH') OR exit('No direct script access allowed'); ?>
|
||||
<div class="tab-content mx-4" id="nav-tabContent">
|
||||
<h2>Dashboard</h2>
|
||||
<br>
|
||||
<div class="clear"></div>
|
||||
<?php if (strlen($error) > 0) : ?>
|
||||
<div class="row">
|
||||
<div class="col-md-12">
|
||||
<div class="alert alert-danger" role="alert">
|
||||
<?php echo $error; ?>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
<?php if (strlen($success) > 0) : ?>
|
||||
<div class="row">
|
||||
<div class="col-md-12">
|
||||
<div class="alert alert-success" role="success">
|
||||
<?php echo $success; ?>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
</div>
|
||||
Reference in New Issue
Block a user