mirror of
https://github.com/Shadowss/TravianZ.git
synced 2026-06-28 00:24:23 +00:00
e69d8457d8
Admin panel design changed
59 lines
3.2 KiB
Smarty
59 lines
3.2 KiB
Smarty
<?php
|
|
#################################################################################
|
|
## -= YOU MAY NOT REMOVE OR CHANGE THIS NOTICE =- ##
|
|
## --------------------------------------------------------------------------- ##
|
|
## Filename : result_email.tpl ##
|
|
## Type : Admin Panel Frontend ##
|
|
## --------------------------------------------------------------------------- ##
|
|
## Developed by : Dzoki (Original) ##
|
|
## Refactored by : Shadow ##
|
|
## Redesign by : Shadow ##
|
|
## --------------------------------------------------------------------------- ##
|
|
## Contact : cata7007@gmail.com ##
|
|
## Project : TravianZ ##
|
|
## GitHub : https://github.com/Shadowss/TravianZ ##
|
|
## --------------------------------------------------------------------------- ##
|
|
## License : TravianZ Project ##
|
|
## Copyright : TravianZ (c) 2010-2025. All rights reserved. ##
|
|
## --------------------------------------------------------------------------- ##
|
|
#################################################################################
|
|
?>
|
|
<?php $result = $admin->search_email($_POST['s']); ?>
|
|
<style>
|
|
.search-wrap{font-family:system-ui;margin-top:10px}
|
|
.search-head{width:100%;background:linear-gradient(135deg,#66CCFF,#66CCCC);color:#fff;padding:10px 12px;font-weight:600;text-align:center;font-size:14px;border-radius:10px 10px 0 0;box-shadow:0 2px 8px rgba(0,0,0,.08);box-sizing:border-box}
|
|
.search-table{width:100%;border-collapse:separate;border-spacing:0;background:#fff;border:1px solid #e5e7eb;border-top:0;border-radius:0 0 10px 10px;overflow:hidden;box-shadow:0 2px 8px rgba(0,0,0,.04);margin-bottom:12px}
|
|
.search-table tr:first-child td{background:#f8fafc;color:#64748b;font-size:11px;text-transform:uppercase;padding:7px 10px;font-weight:600;border-bottom:1px solid #e5e7eb;text-align:center}
|
|
.search-table td{padding:7px 10px;border-bottom:1px solid #f1f5f9;font-size:13px;color:#334155;text-align:center;word-break:break-all}
|
|
.search-table tr:last-child td{border-bottom:0}
|
|
.search-table tr:hover td{background:#f8fafc}
|
|
.search-table a{color:#2563eb;text-decoration:none;font-weight:500}
|
|
.search-table a:hover{text-decoration:underline}
|
|
.no-res{padding:20px;text-align:center;color:#94a3b8;font-style:italic}
|
|
</style>
|
|
|
|
<div class="search-wrap">
|
|
<div class="search-head">Found emails (<?php echo count($result);?>)</div>
|
|
|
|
<table class="search-table">
|
|
<tr>
|
|
<td>UID</td>
|
|
<td>NAME</td>
|
|
<td>EMAIL</td>
|
|
</tr>
|
|
<?php if($result){
|
|
for ($i = 0; $i <= count($result)-1; $i++) {
|
|
$uname = $database->getUserField($result[$i]["id"],'username',0);
|
|
echo '
|
|
<tr>
|
|
<td>'.$result[$i]["id"].'</td>
|
|
<td><a href="?p=player&uid='.$result[$i]["id"].'">'.$uname.'</a></td>
|
|
<td>'.$result[$i]["email"].'</td>
|
|
</tr>
|
|
';
|
|
}} else {
|
|
echo '<tr><td colspan="3" class="no-res">No results</td></tr>';
|
|
}
|
|
?>
|
|
</table>
|
|
</div> |