typecho后台登陆注册页面美化

模板开发以及发布测试

版主: seita

回复
yypy
帖子: 8
注册时间: 2019年 6月 9日 21:39

typecho后台登陆注册页面美化

帖子 yypy »

图片
直接附上代码吧

代码: 全选

 <?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';
?>
<html lang="zh">
<head>
  <link href="/admin/css/registerstyle.css" rel="stylesheet" type="text/css" media="all" />
</head>
<body>

    <div class="main-w3layouts wrapper">
        <div class="main-agileinfo">
            <div class="agileits-top">
                        <form action="<?php $options->registerAction(); ?>" method="post" name="register" role="form">
                  <label for="name" class="sr-only"><?php _e('用户名'); ?></label>
                  <input type="text" id="name" name="name" value="<?php echo $rememberName; ?>" placeholder="<?php _e('用户名'); ?>" class="text-l w-100" autofocus />
                  <label for="mail" class="sr-only"><?php _e('Email'); ?></label>
                  <input type="pw" id="mail" name="mail" class="text-l w-100" placeholder="<?php _e('Email'); ?>" />
                    <input type="submit" value="<?php _e('注册'); ?>">
                                                  <ul>
                                                          <p class="more-link">
            <a href="<?php $options->siteUrl(); ?>"><?php _e('返回首页'); ?></a>
            &bull;
            <a href="<?php $options->adminUrl('login.php'); ?>"><?php _e('用户登录'); ?></a>
        </p>
                                                  </ul>
                </form>
            </div>
        </div>

</body>
</html>
<?php
include 'common-js.php';
?>
<script>
$(document).ready(function () {
    $('#name').focus();
});
</script>
<?php
include 'footer.php';
?>


css文件到博客下载吧

https://www.isenyu.cn/91.html

顺便来波友链使使 哈哈哈

顺便蹭波ip 哈哈哈
hillvision
帖子: 17
注册时间: 2019年 4月 12日 00:03

Re: typecho后台登陆注册页面美化

帖子 hillvision »

漂亮,送上1IP
qlily13
帖子: 1
注册时间: 2019年 7月 19日 11:23

Re: typecho后台登陆注册页面美化

帖子 qlily13 »

nice!
xumtak
帖子: 2
注册时间: 2019年 9月 4日 00:25

Re: typecho后台登陆注册页面美化

帖子 xumtak »

:D
回复