begin of thinksaas 3.68

Signed-off-by: kevin <kevin@lmve.net>
This commit is contained in:
2023-06-22 13:33:25 +08:00
commit 963ec1b2ea
2746 changed files with 331806 additions and 0 deletions
+37
View File
@@ -0,0 +1,37 @@
{php include pubTemplate("header_admin")}
<div class="midder">
{template anti_menu}
<div>
<form method="post" action="{SITE_URL}index.php?app=system&ac=anti&ts=email_add">
Email<input name="email" /> <input type="submit" value="添加" /> <span class="fs12 text-danger">添加后Email不可以再注册</span>
</form>
</div>
<div class="page">{$pageUrl}</div>
<div class="mt-3">
<table class="table table-hover">
<thead class="thead-light">
<tr><th>Email</th><th>添加时间</th><th>操作</th></tr>
</thead>
<tbody class="fs12 c9">
{loop $arrEmail $key $item}
<tr class="odd"><td>{$item['email']}</td>
<td>{$item['addtime']}</td>
<td><a href="{SITE_URL}index.php?app=system&ac=anti&ts=email_del&id={$item['id']}"><i class="bi bi-trash"></i> 删除</a></td>
</tr>
{/loop}
</tbody>
</table>
</div>
<div class="page">{$pageUrl}</div>
</div>
{php include pubTemplate("footer_admin")}