forked from kevinowino869/mitrobill
Selection text color
This commit is contained in:
parent
8ec7b6f080
commit
7d98844690
18
CHANGELOG.md
Normal file
18
CHANGELOG.md
Normal file
@ -0,0 +1,18 @@
|
||||

|
||||
|
||||
# CHANGELOG
|
||||
|
||||
## 2023.6.15
|
||||
|
||||
- User can connect to internet from User Dashboard
|
||||
- Fix Confirm when delete
|
||||
- Change Logo PHPNuxBill
|
||||
- Using Composer
|
||||
- Fix Search User
|
||||
- Fix user check, if not found will logout
|
||||
|
||||
## 2023.6.8
|
||||
|
||||
- Fixing registration without OTP
|
||||
- Username will not go to phonenumber if OTP registration is not enabled
|
||||
- Fix Bug PPOE
|
@ -53,7 +53,7 @@
|
||||
<label class="col-md-2 control-label">APP URL</label>
|
||||
<div class="col-md-6">
|
||||
<input type="text" readonly class="form-control" value="{$app_url}">
|
||||
<p class="help-block">system/config.php</p>
|
||||
<p class="help-block">edit at config.php</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -16,6 +16,18 @@
|
||||
<link rel="stylesheet" href="ui/ui/styles/adminlte.min.css">
|
||||
<link rel="stylesheet" href="ui/ui/styles/skin-blue.min.css">
|
||||
|
||||
<style>
|
||||
::-moz-selection {
|
||||
/* Code for Firefox */
|
||||
color: red;
|
||||
background: yellow;
|
||||
}
|
||||
|
||||
::selection {
|
||||
color: red;
|
||||
background: yellow;
|
||||
}
|
||||
</style>
|
||||
|
||||
{if isset($xheader)}
|
||||
{$xheader}
|
||||
|
@ -16,6 +16,18 @@
|
||||
<link rel="stylesheet" href="ui/ui/styles/adminlte.min.css">
|
||||
<link rel="stylesheet" href="ui/ui/styles/skin-blue.min.css">
|
||||
|
||||
<style>
|
||||
::-moz-selection {
|
||||
/* Code for Firefox */
|
||||
color: red;
|
||||
background: yellow;
|
||||
}
|
||||
|
||||
::selection {
|
||||
color: red;
|
||||
background: yellow;
|
||||
}
|
||||
</style>
|
||||
|
||||
{if isset($xheader)}
|
||||
{$xheader}
|
||||
@ -50,7 +62,7 @@
|
||||
class="img-circle" alt="User Image">
|
||||
|
||||
<p>
|
||||
{$_user['fullname']}
|
||||
{$_user['fullname']}
|
||||
<small>Member since Nov. 2012</small>
|
||||
</p>
|
||||
</li>
|
||||
@ -68,7 +80,8 @@
|
||||
</li>
|
||||
<li class="user-footer">
|
||||
<div class="pull-right">
|
||||
<a href="{$_url}logout" class="btn btn-default btn-flat"><i class="ion ion-power"></i> {$_L['Logout']}</a>
|
||||
<a href="{$_url}logout" class="btn btn-default btn-flat"><i
|
||||
class="ion ion-power"></i> {$_L['Logout']}</a>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
@ -127,4 +140,4 @@
|
||||
</h1>
|
||||
</section>
|
||||
<section class="content">
|
||||
{if isset($notify)}{$notify}{/if}
|
||||
{if isset($notify)}{$notify}{/if}
|
@ -54,14 +54,15 @@
|
||||
<td>{$ds['type']}</td>
|
||||
<td>{$ds['routers']}</td>
|
||||
<td>{$ds['name_plan']}</td>
|
||||
<td>{$ds['code']}</td>
|
||||
<td><span style="background-color: black; color:black;">{$ds['code']}</span></td>
|
||||
<td align="center">{if $ds['status'] eq '0'} <label class="btn-tag btn-tag-success">Not
|
||||
Use</label> {else} <label class="btn-tag btn-tag-danger">Used</label>
|
||||
{/if}</td>
|
||||
<td align="center">{if $ds['user'] eq '0'} - {else} {$ds['user']} {/if}</td>
|
||||
<td>
|
||||
<a href="{$_url}prepaid/voucher-delete/{$ds['id']}" id="{$ds['id']}"
|
||||
class="btn btn-danger btn-sm" onclick="return confirm('{$_L['Delete']}?')">{$_L['Delete']}</a>
|
||||
class="btn btn-danger btn-xs"
|
||||
onclick="return confirm('{$_L['Delete']}?')">{$_L['Delete']}</a>
|
||||
</td>
|
||||
</tr>
|
||||
{/foreach}
|
||||
|
Loading…
x
Reference in New Issue
Block a user