1 Star 1 Fork 0

FreeWind/简易的PHP图书后台管理系统

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
book_top.php 1.89 KB
一键复制 编辑 原始数据 按行查看 历史
FreeWind 提交于 2025-05-29 17:20 +08:00 . 简易的PHP图书后台管理系统
<!DOCTYPE html>
<html>
<head>
<title>图书系统后台界面</title>
<link rel="shortcut icon" href="icon/favicon.ico" type="image/x-icon">
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background:#ffffff;
background-size: cover;
background-position: center;
position: relative;
}
body::before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(255, 255, 255, 0.6);
z-index: -1;
}
.header {
margin-top: 0px;
background-color: rgba(255, 255, 255, 0.8);
color: #333;
padding: 20px;
text-align: left;
font-size: 24px;
display: flex;
justify-content: space-between;
align-items: center;
border-bottom: 2px solid #ddd;
}
.admin-info {
font-size: 16px;
margin-right: 10px;
}
.logout-link {
color: #4CAF50;
text-decoration: none;
margin-left: 5px;
transition: color 0.3s;
}
.logout-link:hover {
color: #000;
text-decoration: underline;
}
</style>
</head>
<body>
<div class="header">
图书系统后台管理
<div class="admin-info">
<?php
session_start();
$username = (empty($_SESSION["name"])) ? '' : $_SESSION["name"];
echo "当前管理员:".$username." <a href='login.php?tj=out' class='logout-link'>退出</a>";
?>
</div>
</div>
</body>
</html>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
PHP
1
https://gitee.com/FreeWind2333/Simple-PHP-Library-Management-System.git
git@gitee.com:FreeWind2333/Simple-PHP-Library-Management-System.git
FreeWind2333
Simple-PHP-Library-Management-System
简易的PHP图书后台管理系统
master

搜索帮助