c86c007dca
更新消息机制,将后台cookie识别改为前台js cookie识别 更新session机制
50 lines
1.7 KiB
PHP
50 lines
1.7 KiB
PHP
<?php
|
|
include 'common.php';
|
|
|
|
if ($user->hasLogin()) {
|
|
$response->redirect($options->adminUrl);
|
|
}
|
|
$rememberName = Typecho_Cookie::get('__typecho_remember_name');
|
|
Typecho_Cookie::delete('__typecho_remember_name');
|
|
|
|
include 'header.php';
|
|
?>
|
|
|
|
<div class="typecho-login">
|
|
<h1>Typecho</h1>
|
|
<form action="<?php $options->loginAction(); ?>" method="post" name="login" role="form">
|
|
<p>
|
|
<label for="name" class="visuallyhidden"><?php _e('用户名'); ?></label>
|
|
<input type="text" id="name" name="name" value="<?php echo $rememberName; ?>" placeholder="<?php _e('用户名'); ?>" class="text-l w-100" />
|
|
</p>
|
|
<p>
|
|
<label for="password" class="visuallyhidden"><?php _e('密码'); ?></label>
|
|
<input type="password" id="password" name="password" class="text-l w-100" placeholder="<?php _e('密码'); ?>" />
|
|
</p>
|
|
<p class="submit">
|
|
<!-- <label for="remember"><input type="checkbox" name="remember" class="checkbox" value="1" id="remember" /> <?php _e('记住我'); ?></label> -->
|
|
<button type="submit" class="btn-l w-100 primary"><?php _e('登录'); ?></button>
|
|
<input type="hidden" name="referer" value="<?php echo htmlspecialchars($request->get('referer')); ?>" />
|
|
</p>
|
|
</form>
|
|
|
|
<p class="more-link">
|
|
<a href="<?php $options->siteUrl(); ?>"><?php _e('返回首页'); ?></a>
|
|
<?php if($options->allowRegister): ?>
|
|
•
|
|
<a href="<?php $options->registerUrl(); ?>"><?php _e('用户注册'); ?></a>
|
|
<?php endif; ?>
|
|
</p>
|
|
</div>
|
|
<?php
|
|
include 'common-js.php';
|
|
?>
|
|
<script>
|
|
$(document).ready(function () {
|
|
$('#name').focus();
|
|
});
|
|
</script>
|
|
<?php
|
|
include 'footer.php';
|
|
?>
|