管理页面展示
管理代码
<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>登录页面</title>
<style>
*{
margin: 0;
padding: 0;
}
html,body{
width: 100%;
height: 100%;
}
body{
display: flex;
flex-direction: column;
}
.header{
width: 100%;
height: 72px;
display: flex;
/* background-color: chartreuse; */
justify-content: center;
}
.header .content{
width: 1200px;
height: 72px;
display: flex;
align-items: center;
}
.header .content img{
width: 100px;
height: 30px;
}
.main{
width: 100%;
flex: 1;
/* background-color: aqua; */
display: flex;
justify-content: center;
align-items: center;
}
.login-box{
width: 400px;
height: 240px;
background-color: #fff;
border-radius: 8px;
box-shadow: #888 10px 10px 20px;
}
.head{
width: 100%;
height: 38px;
/* background-color: antiquewhite;s */
text-align:center;
line-height: 38px;
letter-spacing: 2px;
}
.login{
height: 180px;
display: flex;
flex-direction: column;
justify-content:space-evenly ;
align-items: center;
}
.login p{
height: 40px;
display: flex;
justify-content: space-evenly;
align-items: center;
}
.login p input{
width: 260px;
height: 20px;
}
.login p button{
outline: none;
border: none;
width: 200px;
height: 30px;
border-radius: 10px;
background-color: #4872f6;
color: white;
cursor: pointer;
transition: all 1s;
}
.login p button:hover{
font-weight: 600;
background-color: #7c9bff;
color: lightblue;
transition: all 1s;
}
</style>
</head>
<body>
<div class="header">
<div class="content">
<img src="./img/小鹅通.png">
</div>
</div>
<div class="main">
<div class="login-box">
<div class="head">管理员登录</div>
<div class="login">
<p>
<lable for="zhanghao">账号:</lable>
<input type="text" name="zhanghao" id="zhanghao" placeholder="请输入账号">
</p>
<p>
<lable for="mima">密码:</lable>
<input type="password" name="mima" id="mima" placeholder="请输入密码">
</p>
<p>
<button>登录</button>
</p>
</div>
</div>
</div>
</body>
</html>
后台页面展示
后台代码
<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>实践</title>
<link rel="stylesheet" href="./font/iconfont.css">
<link rel="stylesheet" href="./css/style.css">
<link rel="stylesheet" href="./css/demo16.css">
</head>
<body>
<div class="left">
<div class="head">
<h2>云端中国城</h2>
</div>
<div class="main">
<p><i class="iconfont icon-shouye"></i>首页</p>
<p><i class="iconfont icon-shezhi"></i>设置</p>
<p><i class="iconfont icon-yonghuguanli"></i>用户管理</p>
<p><i class="iconfont icon-tixianjinezongji"></i>奖池设置</p>
<p><i class="iconfont icon-a-employee-card1"></i>主播认证</p>
<p><i class="iconfont icon-zhiboguanli"></i>直播管理</p>
<p><i class="iconfont icon-shipinguanli"></i>视频管理</p>
<p><i class="iconfont icon-caiwuguanli"></i>财务管理</p>
<p><i class="iconfont icon-jiazuguanli"></i>家族管理</p>
<p><i class="iconfont icon-boxopen2"></i>道具管理</p>
<p><i class="iconfont icon-yingxiaohongbaoguanli"></i>红包管理</p>
<p><i class="iconfont icon-minzhengshiwu"></i>守护管理</p>
<p><i class="iconfont icon-dengjiguanli"></i>等级管理</p>
<p><i class="iconfont icon-yaoqingjiangli"></i>邀请奖励</p>
</div>
</div>
<div class="right">
<div class="header">
<h3>云端中国城后台管理系统</h3>
</div>
<div class="nav"></div>
<div class="foot">
<p>云端中国城·延安大学·版权所有</p>
<p>2024EduCoder 公安网备43019002000962号</p>
</div>
</div>
</body>
</html>