mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-06 03:58:04 +08:00
[更新]修改后台登录页面
This commit is contained in:
parent
dae44ab087
commit
a72e08169b
@ -39,17 +39,12 @@ class Login extends Controller
|
|||||||
public function index()
|
public function index()
|
||||||
{
|
{
|
||||||
if (Request::isGet()) {
|
if (Request::isGet()) {
|
||||||
// 登录状态检查
|
|
||||||
if (NodeService::islogin()) {
|
if (NodeService::islogin()) {
|
||||||
// 已经登录,跳转到后面首页
|
|
||||||
$this->redirect('@admin');
|
$this->redirect('@admin');
|
||||||
} else {
|
} else {
|
||||||
// 定义运行环境模式
|
|
||||||
$this->domain = Request::host(true);
|
$this->domain = Request::host(true);
|
||||||
$this->devmode = in_array($this->domain, ['127.0.0.1', 'localhost']) or stripos($this->domain, 'thinkadmin.top') <> false;
|
$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());
|
if (!($this->loginskey = session('loginskey'))) session('loginskey', $this->loginskey = uniqid());
|
||||||
// 显示后台登录页面
|
|
||||||
$this->title = '系统登录';
|
$this->title = '系统登录';
|
||||||
$this->fetch();
|
$this->fetch();
|
||||||
}
|
}
|
||||||
|
@ -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="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">
|
<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>
|
<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'>
|
<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'>
|
<img src='https://gitee.com/zoujingli/ThinkAdmin/widgets/widget_1.svg' alt='Fork me on Gitee'>
|
||||||
</a>
|
</a>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user