Files
web-discuz/uc_server/data/view/admin_login.php
2025-06-27 20:59:33 +08:00

67 lines
3.6 KiB
PHP

<?php if(!defined('UC_ROOT')) exit('Access Denied');?>
<?php include $this->gettpl('header');?>
<script type="text/javascript">
function $(id) {
return document.getElementById(id);
}
</script>
<div class="container">
<form action="<?php echo UC_ADMINSCRIPT;?>?m=user&a=login" method="post" id="loginform" <?php if($iframe) { ?>target="_self"<?php } else { ?>target="_top"<?php } ?>>
<input type="hidden" name="formhash" value="<?php echo FORMHASH;?>" />
<input type="hidden" name="seccodehidden" value="<?php echo $seccodeinit;?>" />
<input type="hidden" name="iframe" value="<?php echo $iframe;?>" />
<table class="mainbox">
<tr>
<td class="loginbox">
<h1>UCenter</h1>
<p>UCenter 是一个能沟通多个应用的桥梁,使各应用共享一个用户数据库,实现统一登录,注册,用户管理。</p>
</td>
<td class="login">
<?php if($errorcode == UC_LOGIN_ERROR_FOUNDER_PW) { ?><div class="errormsg loginmsg"><p>UCenter创始人密码错误</p></div>
<?php } elseif($errorcode == UC_LOGIN_ERROR_ADMIN_PW) { ?><div class="errormsg loginmsg"><p><em>登录失败!</em><br />用户名无效,或密码错误。</p></div>
<?php } elseif($errorcode == UC_LOGIN_ERROR_ADMIN_NOT_EXISTS) { ?><div class="errormsg loginmsg"><p>该管理员不存在</p></div>
<?php } elseif($errorcode == UC_LOGIN_ERROR_SECCODE) { ?><div class="errormsg loginmsg"><p>验证码输入错误</p></div>
<?php } elseif($errorcode == UC_LOGIN_ERROR_FAILEDLOGIN) { ?><div class="errormsg loginmsg"><p>密码重试次数过多,请稍后尝试</p></div>
<?php } ?>
<p>
<input type="radio" name="isfounder" value="1" class="radio" <?php if((isset($_POST['isfounder']) && $isfounder) || !isset($_POST['isfounder'])) { ?>checked="checked"<?php } ?> onclick="changeuser('founder')" id="founder" /><label for="founder">UCenter创始人</label>
<input type="radio" name="isfounder" value="0" class="radio" <?php if((isset($_POST['isfounder']) && !$isfounder)) { ?>checked="checked"<?php } ?> onclick="changeuser('manager')" id="admin" /><label for="admin">管理员</label>
</p>
<p id="usernamediv">用户名: <input type="text" name="username" class="txt" id="username" value="<?php echo $username;?>" /></p>
<p>密 码: <input type="password" name="password" class="txt" id="password" value="<?php echo $password;?>" /></p>
<p>验证码: <input type="text" name="seccode" class="txt seccode" id="seccode" value="" /><img width="70" height="21" src="<?php echo UC_ADMINSCRIPT;?>?m=seccode&seccodeauth=<?php echo $seccodeinit;?>&<?php echo rand();?>" class="checkcode" /></p>
<p class="loginbtn"><input type="submit" name="submit" value="登 录" class="btn" /></p>
</td>
</tr>
</table>
</form>
</div>
<script type="text/javascript">
<?php if((isset($_POST['isfounder']) && $isfounder) || !isset($_POST['isfounder'])) { ?>
$('username').value='UCenter Administrator';
$('username').disabled = true;
$('username').readOnly = true;
$('password').focus();
<?php } else { ?>
$('username').disabled = false;
$('username').readOnly = false;
$('username').focus();
<?php } ?>
function changeuser(user) {
if(user == 'founder') {
$('username').value='UCenter Administrator';
$('username').readOnly = true;
$('username').disabled = true;
$('password').focus();
} else if(user == 'manager') {
$('username').value='';
$('username').readOnly = false;
$('username').disabled = false;
$('username').focus();
}
}
</script>
<div class="footer">Powered by UCenter <?php echo UC_SERVER_VERSION;?> &copy; 2001-2025 <a href="https://code.dismall.com/" target="_blank">Discuz! Team</a>.</div>
<?php include $this->gettpl('footer');?>