修改系统名称

This commit is contained in:
BianLzhaoMin 2025-05-26 09:14:59 +08:00
parent a4ea65f432
commit d8bb6ec57e
2 changed files with 128 additions and 122 deletions

View File

@ -9,7 +9,8 @@
<meta name="apple-mobile-web-app-status-bar-style" content="black"> <meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta name="apple-mobile-web-app-capable" content="yes"> <meta name="apple-mobile-web-app-capable" content="yes">
<meta name="format-detection" content="telephone=no"> <meta name="format-detection" content="telephone=no">
<title>后台管理系统</title> <!-- <title>后台管理系统</title> -->
<title>项目一体化作战动态管控平台</title>
<link rel="stylesheet" href="css/font-awesome/css/font-awesome.css" media="all" /> <link rel="stylesheet" href="css/font-awesome/css/font-awesome.css" media="all" />
<link rel="stylesheet" href="css/index2.css" media="all" /> <link rel="stylesheet" href="css/index2.css" media="all" />
<link rel="stylesheet" href="css/global.css" media="all" /> <link rel="stylesheet" href="css/global.css" media="all" />
@ -22,11 +23,13 @@
.layui-nav-itemed>.layui-nav-child { .layui-nav-itemed>.layui-nav-child {
background-color: rgba(0, 0, 0, 0.01) !important; background-color: rgba(0, 0, 0, 0.01) !important;
} }
.layui-nav-tree .layui-nav-child dd { .layui-nav-tree .layui-nav-child dd {
margin: 0; margin: 0;
margin-left: 15px; margin-left: 15px;
} }
</style> </style>
<body> <body>
<div class="layui-layout layui-layout-admin" style="border-bottom: solid 5px #eeecec;height: 65px;"> <div class="layui-layout layui-layout-admin" style="border-bottom: solid 5px #eeecec;height: 65px;">
<!-- 标题栏 --> <!-- 标题栏 -->
@ -34,7 +37,7 @@
<div class="layui-main"> <div class="layui-main">
<div class="admin-login-box"> <div class="admin-login-box">
<a class="logo" style="left: 0;" href="javascript:void(0)"> <a class="logo" style="left: 0;" href="javascript:void(0)">
<span style="font-size: 22px;color: #fff;letter-spacing: 2px;">后台管理系统</span> <span style="font-size: 22px;color: #fff;letter-spacing: 2px;">项目一体化作战动态管控平台</span>
</a> </a>
<div class="admin-side-toggle" style="display: none;"> <div class="admin-side-toggle" style="display: none;">
<i class="fa fa-bars" aria-hidden="true"></i> <i class="fa fa-bars" aria-hidden="true"></i>
@ -54,10 +57,12 @@
<!-- <a href='javascript:;' lay-id="-999" data-url="pages/user/updateMyself.html"><i class="fa fa-user-circle" aria-hidden="true"></i> 个人信息</a>--> <!-- <a href='javascript:;' lay-id="-999" data-url="pages/user/updateMyself.html"><i class="fa fa-user-circle" aria-hidden="true"></i> 个人信息</a>-->
<!-- </dd>--> <!-- </dd>-->
<dd> <dd>
<a href='javascript:;' lay-id="-998" onclick="changeUserPwd()"><i class="fa fa-drupal" aria-hidden="true"></i> 修改密码</a> <a href='javascript:;' lay-id="-998" onclick="changeUserPwd()"><i class="fa fa-drupal"
aria-hidden="true"></i> 修改密码</a>
</dd> </dd>
<dd> <dd>
<a href="javascript:;" onclick="logout()"><i class="fa fa-sign-out" aria-hidden="true"></i> 退出</a> <a href="javascript:;" onclick="logout()"><i class="fa fa-sign-out"
aria-hidden="true"></i> 退出</a>
</dd> </dd>
</dl> </dl>
</li> </li>

View File

@ -1,5 +1,6 @@
<!DOCTYPE html> <!DOCTYPE html>
<html> <html>
<head> <head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta http-equiv="Pragma" content="no-cache"> <meta http-equiv="Pragma" content="no-cache">
@ -8,21 +9,20 @@
<title>登录</title> <title>登录</title>
<link href="css/login.css" type="text/css" rel="stylesheet"> <link href="css/login.css" type="text/css" rel="stylesheet">
</head> </head>
<body> <body>
<div class="login"> <div class="login">
<div class="message">后台管理系统</div> <!-- <div class="message">后台管理系统</div> -->
<div class="message">项目一体化作战动态管控平台</div>
<div id="darkbannerwrap"></div> <div id="darkbannerwrap"></div>
<form id="login-form" method="post" onsubmit="return false;"> <form id="login-form" method="post" onsubmit="return false;">
<input id="username" name="username" placeholder="用户名" type="text" <input id="username" name="username" placeholder="用户名" type="text" autocomplete="off">
autocomplete="off">
<hr class="hr15"> <hr class="hr15">
<input id="password" name="password" placeholder="密码" type="password" <input id="password" name="password" placeholder="密码" type="password" autocomplete="off">
autocomplete="off">
<hr class="hr15"> <hr class="hr15">
<button style="width: 100%;" type="submit" <button style="width: 100%;" type="submit" onclick="login(this)">登录</button>
onclick="login(this)">登录</button>
<hr class="hr20"> <hr class="hr20">
<span id="info" style="color: red"></span> <span id="info" style="color: red"></span>
</form> </form>
@ -90,4 +90,5 @@
} }
} }
</script> </script>
</html> </html>