force sync from /var/www/html/panel: 2025-09-08T20:36:30Z

This commit is contained in:
auto-sync 2025-09-08 16:36:30 -04:00
commit 4f717c9ee8
18119 changed files with 2566034 additions and 0 deletions

View file

@ -0,0 +1,70 @@
{if !empty($error)}
<table>
<tr>
<td class="error">{$error}</td>
</tr>
</table>
{/if}
{if !empty($motd)}
<table class="login" style="width:300px" cellpadding="0" cellspacing="0">
<tr>
<td class="loginhead">{$lang['motd']}</td>
</tr>
<tr>
<td align="center">
{$motd}
</td>
</tr>
<tr>
<td class="loginbottom">&nbsp;</td>
</tr>
</table>
{/if}
{if !isset($smarty.post.sendlogin) AND $loginstatus !== true OR $loginstatus !== true}
<br />
<form method="post" action="index.php?site=login">
<table class="login" style="width:300px" cellpadding="0" cellspacing="0">
<tr>
<td colspan="2"></td>
</tr>
<tr>
<td class="loginhead" colspan="2">{$lang['login']}</td>
</tr>
<tr>
<td align="center">
<table style="padding:10px;" cellpadding="1" cellspacing="0">
<tr>
<td>{$lang['server']}:</td>
<td>
{if count($instances) == 1}
{foreach key=skey item=sdata from=$instances}
<input type="hidden" name="skey" value="{$skey}" /> {$sdata['alias']}
{/foreach}
{else}
<select name="skey">
{foreach key=skey item=sdata from=$instances}
<option value="{$skey}">{$sdata['alias']}</option>
{/foreach}
</select>
{/if}
</td>
</tr>
<tr>
<td>{$lang['username']}:</td>
<td><input type="text" name="loginUser" value="serveradmin" /></td>
</tr>
<tr>
<td>{$lang['password']}:</td>
<td><input type="password" name="loginPw" /></td>
</tr>
<tr>
<td>{$lang['option']}:</td>
<td><input class="button" type="submit" name="sendlogin" value="{$lang['login']}"/></td>
</tr>
</table>
</td>
</tr>
</table>
</form>
<br />
{/if}