First commit

This commit is contained in:
2025-06-18 10:24:27 +08:00
commit ebc39cd5dd
3873 changed files with 412712 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
{template header_client}
<br />
<table cellpadding="0" cellspacing="0" class="msg" style="width: 65%" align="center">
<thead>
<tr>
<th>{lang message_title}</th>
</tr>
</thead>
<tbody>
<tr>
<td>$message<br />
<!--{if $redirect == 'BACK'}-->
<a href="###" onclick="history.back();"> {lang message_back} </a>
<!--{elseif $redirect}-->
<a href="$redirect"> {lang message_redirect} </a>
<script type="text/javascript">
function redirect(url, time) {
setTimeout("window.location='" + url + "'", time * 1000);
}
redirect('$redirect', 3);
</script>
<!--{/if}-->
</td>
</tr>
</tbody>
</table>
</div>
{template footer_client}