poem_front/Web/user/index.html
ZHANG ZENGXUAN d0dd647fac feat: INIT
2025-05-19 21:59:43 +08:00

155 lines
5.0 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0" maximum-scale=1 , user-scalable=0”>
<script src="../assets/js/jquery-3.4.1.min.js"></script>
<title>词汇江湖-用户中心</title>
<link rel="shortcut icon" href="bitbug_favicon.ico" />
<!-- 引入所需要的css -->
<!-- 引入页面所需要的css -->
<link rel="stylesheet" href="../assets/css/style.css">
<link rel="stylesheet" href="../assets/css/header.css">
<link rel="stylesheet" href="../assets/css/footer.css">
<link rel="stylesheet" href="../assets/css/main.css">
<link rel="stylesheet" href="../assets/css/base.css">
<link rel="stylesheet" href="../assets/css/bootstrap.css">
<link rel="stylesheet" href="../assets/css/index.css">
<link rel="stylesheet" href="../assets/iconfont/iconfont.css">
<!-- 引入所需要的js文件 -->
<script src="../assets/js/jquery-3.4.1.min.js"></script>
<script src="../assets/js/ajax.js"></script>
<!-- 头部导航所需要的css -->
<style>
body {
background: url(../assets/images/bg5.png);
background-size: 100% 100%;
background-repeat: no-repeat;
}
.div1 {
background-color: #343a40;
}
.w {
margin: 0 auto;
width: 1200px;
}
html{
height: 100%;
width: 100%;
}
</style>
</head>
<body onload="cinumber(),shinumber(),fabu_ci(),fabu_shi(),user_message(),usermessage()">
<div id="header"></div>
<!-- 头部导航结束 -->
<!-- 富文本编辑器开始 -->
<div class="user-wrap ">
<div class="user-area ">
<div class="text ">
<h1 style="font-size: 20px;margin-right: -20px; ">用户管理</h1>
</div>
<hr style="border: 1px dashed #e8e8e8;">
<div class="user ">
<ul class="user-list">
<a href="../index.html">
<li>
<span class="iconfont icon-shouye"></span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
</li>
</a>
<a href="./index.html">
<li>
<span class="iconfont icon-zelvgongyongyonghuzhongxinz003"></span>用户中心
</li>
</a>
<a href="./text.html">
<li>
<span class="iconfont icon-fabu"></span>发布诗词
</li>
</a>
<a href="./mytext.html">
<li>
<span class="iconfont icon-wodefabu"></span>我的发布
</li>
</a>
<a href="./guanli.html">
<li>
<span class="iconfont icon-wodefabu"></span>诗词管理
</li>
</a>
<a href="./shoucang.html">
<li>
<span class="iconfont icon-shoucang"></span>我的收藏
</li>
</a>
<a href="./guanzhu.html">
<li>
<span class="iconfont icon-wodeguanzhu"></span>我的关注
</li>
</a>
<a href="./manage.html">
<li>
<span class="iconfont icon-shezhi"></span>账号设置
</li>
</a>
<a href="./xiaoxi.html">
<li>
<span class="iconfont icon-xiaoxi"></span>消息中心
</li>
</a>
</ul>
</div>
</div>
<div class="user-right">
<ul class="user-right-list">
<li>总发布的诗
<p id="fabu_shi"></p>
</li>
<li>总发布的词
<p id="fabu_ci"></p>
</li>
<li>总收藏诗量
<p id="shi-number"></p>
</li>
<li>总收藏词量
<p id="ci-number"></p>
</li>
</ul>
<hr style="border: 1px dashed #e8e8e8;" />
<div class="user-right-manage">
<div class="user-main" id="user-index-id"></div>
<div class="user-main" id="user-index-username"></div>
<div class="user-main" id="user-index-email"></div>
</div>
</div>
</div>
<!-- 底部 end-->
<div id="footer"></div>
</body>
</html>
<script>
$(function() {
$('#header').load('./common/header.html');
$('#footer').load('./common/footer.html');
})
</script>