mirror of
https://git.beihong.wang/wangbeihong/blog-source.git
synced 2026-04-23 16:33:04 +08:00
51 lines
1.8 KiB
PHP
Executable File
51 lines
1.8 KiB
PHP
Executable File
<?php
|
|
include 'common.php';
|
|
|
|
if ($user->hasLogin() || !$options->allowRegister) {
|
|
$response->redirect($options->siteUrl);
|
|
}
|
|
$rememberName = htmlspecialchars(\Typecho\Cookie::get('__typecho_remember_name', ''));
|
|
$rememberMail = htmlspecialchars(\Typecho\Cookie::get('__typecho_remember_mail', ''));
|
|
\Typecho\Cookie::delete('__typecho_remember_name');
|
|
\Typecho\Cookie::delete('__typecho_remember_mail');
|
|
|
|
$bodyClass = 'body-100';
|
|
|
|
include 'header.php';
|
|
?>
|
|
<div class="typecho-login-wrap">
|
|
<div class="typecho-login">
|
|
<h1><a href="https://typecho.org" class="i-logo">Typecho</a></h1>
|
|
<form action="<?php $options->registerAction(); ?>" method="post" name="register" role="form">
|
|
<p>
|
|
<label for="name" class="sr-only"><?php _e('用户名'); ?></label>
|
|
<input type="text" id="name" name="name" placeholder="<?php _e('用户名'); ?>" value="<?php echo $rememberName; ?>" class="text-l w-100" autofocus />
|
|
</p>
|
|
<p>
|
|
<label for="mail" class="sr-only"><?php _e('Email'); ?></label>
|
|
<input type="email" id="mail" name="mail" placeholder="<?php _e('Email'); ?>" value="<?php echo $rememberMail; ?>" class="text-l w-100" />
|
|
</p>
|
|
<p class="submit">
|
|
<button type="submit" class="btn btn-l w-100 primary"><?php _e('注册'); ?></button>
|
|
</p>
|
|
</form>
|
|
|
|
<p class="more-link">
|
|
<a href="<?php $options->siteUrl(); ?>"><?php _e('返回首页'); ?></a>
|
|
•
|
|
<a href="<?php $options->adminUrl('login.php'); ?>"><?php _e('用户登录'); ?></a>
|
|
</p>
|
|
</div>
|
|
</div>
|
|
<?php
|
|
include 'common-js.php';
|
|
?>
|
|
<script>
|
|
$(document).ready(function () {
|
|
$('#name').focus();
|
|
});
|
|
</script>
|
|
<?php
|
|
include 'footer.php';
|
|
?>
|