管理員登陸
<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="./font_xkbdg65qqqh/iconfont.css">
<link rel="stylesheet" href="./demo01.css">
</head>
<body>
<div class="left">
<div class="neirong">
<div class="yetou">
<div class="yunduan">云端中國(guó)城</div>
</div>
<div class="a shouye iconfont icon-zhuye">首頁(yè)</div>
<div class="a shezhi iconfont icon-shezhi">設(shè)置</div>
<div class="a yonyhu iconfont icon-yonghufill">用戶管理</div>
<div class="a jiangchi iconfont icon-jiangchi">獎(jiǎng)池管理</div>
<div class="a zhubo iconfont icon-zhuborenzheng">主播認(rèn)證</div>
<div class="a zhibo iconfont icon-zhuborenzheng" >直播管理</div>
<div class="a shipin iconfont icon-shipinguanli">視頻管理</div>
<div class="a caiwu iconfont icon-caiwu ">財(cái)務(wù)管理</div>
<div class="a jiazu iconfont icon-xitongjiaose
">家族管理</div>
<div class="a daoju iconfont icon-daojuguanli ">道具管理</div>
<div class="a hongbao iconfont icon-hongbaoguanli ">紅包管理</div>
<div class="a shouhu iconfont icon-newprople">守護(hù)管理</div>
<div class="a dengji iconfont icon-01_huiyuandengjiguanli
">等級(jí)管理</div>
<div class="a yaoqing iconfont icon-yaoqingguanli">邀請(qǐng)獎(jiǎng)勵(lì)</div>
</div>
</div>
<div class="right">
<div class="header">
<div>云端中國(guó)城后臺(tái)管理系統(tǒng)</div>
</div>
<div class="main"></div>
<div class="footer">
<div class="yejiao">
云端大學(xué)城延安大學(xué)版權(quán)所有
2024 EduCoder 公網(wǎng)安備4301900200862號(hào)
</div>
</div>
</div>
</body>
</html>
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
html,body{
width: 100%;
height: 100%;
display: flex;
}
.left{
height: 100%;
width: 200px;
background-color: antiquewhite;
text-align: center;
overflow: hidden;
}
.right{
flex: 1;
height: 100%;;
/* background-color: azure; */
justify-content: space-between;
display: flex;
flex-direction: column;
}
.header{
height: 35px;
width: 100%;
/* background-color: beige; */
line-height: 30PX;
letter-spacing: 3px;
}
.main{
flex: 1;
width: 100%;
background-color: rgb(179, 207, 219);
}
.footer{
height: 40px;
width: 100%;
/* background-color: azure; */
color: darkgrey;
text-align: center;
line-height: 40px;
font-size: 13px;
}
.neirong{
display: flex;
flex-direction: column;
justify-content: space-evenly;
}
.yetou{
width: 200px;
height: 50px;
background-color: darkgray;
text-align: center;
line-height: 50PX;
}
.a{
width: 200px;
height: 51px;
cursor: pointer;
text-align: center;
line-height: 53px;
}
.a:hover{
background-color: cadetblue;
color: black;
}
會(huì)員登陸
<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html,
body {
width: 100%;
height: 100%;
background-color: #8aaaea;
}
.header{
height: 65px;
width: 100%;
display: flex;
justify-content: center;
}
.content{
width: 600px;
height: 65px;
display: flex;
align-items: center;
}
.main {
height: 100%;
width: 100%;
display: flex;
justify-content: center;
align-items: center;
}
.login-box {
width: 450px;
height: 250px;
background-color: rgb(208, 218, 240);
border-radius: 8px;
box-shadow: #8aaaea 10px 10px 20px;
}
.header .content {
width: 1200px;
height: 72px;
}
.head {
width: 100%;
height: 50px;
line-height: 50px;
text-align: center;
font-size: 16px;
letter-spacing: 3px;
}
.login {
height: 160px;
display: flex;
flex-direction: column;
justify-content: space-evenly;
}
.login p {
height: 45px;
display: flex;
justify-content: space-evenly;
align-items: center;
}
.login p input {
width: 260px;
height: 30px;
}
.header .content img {
width: 100px;
height: 30px;
}
body {
display: flex;
flex-direction: column;
}
.login p button{
outline: none;
border: none;
width: 290px;
height: 30px;
border-radius: 15px;
background-color: rgb(63, 80, 209);
color: aliceblue;
}
.login p button:hover{
background-color: blue;
font-weight: 600;
}
</style>
</head>
<body>
<div class="header">
<div class="content">
<img src="./th.png" alt="">
</div>
</div>
<div class="main">
<div class="login-box">
<div class="head">鴻蒙AI管理系統(tǒng) 管理員登陸</div>
<div class="login">
<p>
<label for="zhang'hao">賬號(hào):</label>
<input type="text" name="zhanghao" id="zhanghao" placeholder="請(qǐng)輸入賬號(hào)">
</p>
<p>
<label for="mima">密碼:</label>
<input type="text" name="mima" id="mima" placeholder="請(qǐng)輸入密碼">
</p>
<p>
<button>登錄</button>
</p>
</div>
</div>
</div>
</body>
</html>
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
登陸系統(tǒng)開(kāi)發(fā)
最后編輯于 :
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
【社區(qū)內(nèi)容提示】社區(qū)部分內(nèi)容疑似由AI輔助生成,瀏覽時(shí)請(qǐng)結(jié)合常識(shí)與多方信息審慎甄別。
平臺(tái)聲明:文章內(nèi)容(如有圖片或視頻亦包括在內(nèi))由作者上傳并發(fā)布,文章內(nèi)容僅代表作者本人觀點(diǎn),簡(jiǎn)書(shū)系信息發(fā)布平臺(tái),僅提供信息存儲(chǔ)服務(wù)。
【社區(qū)內(nèi)容提示】社區(qū)部分內(nèi)容疑似由AI輔助生成,瀏覽時(shí)請(qǐng)結(jié)合常識(shí)與多方信息審慎甄別。
平臺(tái)聲明:文章內(nèi)容(如有圖片或視頻亦包括在內(nèi))由作者上傳并發(fā)布,文章內(nèi)容僅代表作者本人觀點(diǎn),簡(jiǎn)書(shū)系信息發(fā)布平臺(tái),僅提供信息存儲(chǔ)服務(wù)。
相關(guān)閱讀更多精彩內(nèi)容
- 管理系統(tǒng) <!DOCTYPE html> 管理系統(tǒng) *{margin: 0;padding: 0;box...
- 持續(xù)更新完善中... 目錄1、HTML篇2、CSS篇3、ECMAScript篇4、DOM篇5、瀏覽器常見(jiàn)兼容問(wèn)題篇...
- 該ui庫(kù)對(duì)一些常用的方法樣式進(jìn)行封裝,方便開(kāi)發(fā)時(shí)使用,可以不斷封裝,也可以作為嘗試使用練習(xí),后面可以學(xué)習(xí)對(duì)UI基礎(chǔ)...
- CSS介紹 CSS 指層疊樣式表(Cascading Style Sheets), 樣式定義如何顯示 HTML 元...
- 1. 設(shè)置一張大的背景,顏色不要過(guò)亮 2. 設(shè)置一個(gè)白色的div,設(shè)置一點(diǎn)點(diǎn)陰影,提升立體感 3. 放置大標(biāo)題,兩...