[更新]修改后台登录页面

This commit is contained in:
Anyon 2019-09-23 14:06:10 +08:00
parent dae44ab087
commit a72e08169b
2 changed files with 1 additions and 6 deletions

View File

@ -39,17 +39,12 @@ class Login extends Controller
public function index()
{
if (Request::isGet()) {
// 登录状态检查
if (NodeService::islogin()) {
// 已经登录,跳转到后面首页
$this->redirect('@admin');
} else {
// 定义运行环境模式
$this->domain = Request::host(true);
$this->devmode = in_array($this->domain, ['127.0.0.1', 'localhost']) or stripos($this->domain, 'thinkadmin.top') <> false;
// 创建登录安全通道
if (!($this->loginskey = session('loginskey'))) session('loginskey', $this->loginskey = uniqid());
// 显示后台登录页面
$this->title = '系统登录';
$this->fetch();
}

View File

@ -4,7 +4,7 @@
<div class="login-container" data-supersized="__ROOT__/static/theme/img/login/bg1.jpg,__ROOT__/static/theme/img/login/bg2.jpg">
<div class="header notselect layui-hide-xs">
<a href="{:url('@')}" class="title">{:sysconf('app_name')}<span class="padding-left-5 font-s10">{:sysconf('app_version')}</span></a>
{notempty name='devMode'}
{notempty name='devmode'}
<a class="pull-right layui-anim layui-anim-fadein" href='https://gitee.com/zoujingli/ThinkAdmin'>
<img src='https://gitee.com/zoujingli/ThinkAdmin/widgets/widget_1.svg' alt='Fork me on Gitee'>
</a>