manto07m 3 жил өмнө
parent
commit
6f0b1043b5

+ 2 - 2
assets/stylesheets/theme.css

@@ -5057,7 +5057,7 @@ html.header-dark .notifications > li .notification-icon i {
 }
 
 .userbox .name {
-	color: #000011;
+	color: #FFF;
 	font-size: 13px;
 	font-size: 1.3rem;
 	line-height: 1.2em;
@@ -5071,7 +5071,7 @@ html.header-dark .notifications > li .notification-icon i {
 }
 
 .userbox .custom-caret {
-	color: #000011;
+	color: #FFF;
 	font-size: 16px;
 	font-weight: bold;
 }

+ 2 - 1
home.php

@@ -56,6 +56,7 @@ if (!isset($_SESSION['loggedin'])) {
 
 	<script type="application/javascript">
 		var userName = '<?php echo $_SESSION['name']; ?>';
+		var pageHeader = '首頁';
 	</script>
 </head>
 
@@ -70,7 +71,7 @@ if (!isset($_SESSION['loggedin'])) {
 			<!-- end: sidebar -->
 			<section role="main" class="content-body">
 				<header class="page-header">
-					<h2>首頁</h2>
+					<h2>{{pageHeader}}</h2>
 				</header>
 				<h1>BIM資訊系統</h1>
 				<h3>本系統統合BIM監測查詢網及BIM支援網:</h3>

+ 1 - 1
script/php/Logout.php

@@ -1,5 +1,5 @@
 <?php
 session_start();
 session_destroy();
-header('Location: ../../pages-signin.html');
+header('Location: ../../../Front-Page/pages-signin.html');
 ?>