53 lines
1.2 KiB
HTML
53 lines
1.2 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="">
|
|
<title>主页</title>
|
|
<style>
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
html,
|
|
body {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
.content {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
|
|
<body>
|
|
<div id="top">
|
|
<div id="logo">
|
|
<img src="/logo.png" height="50px">
|
|
</div>
|
|
<div id="user_info"><span id="userName"></span>
|
|
<span class="logout" onclick="logout()">[登出]</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div id="main">
|
|
<div id="menu">
|
|
<h3>功能</h3>
|
|
<a href="green_house_info.html" target="content_frame" class="menu_item">大棚</a>
|
|
<a href="record_of_operations_history.html" target="content_frame" class="menu_item">历史操作</a>
|
|
</div>
|
|
<div id="content" style="width: 100%; height: 100%;">
|
|
<iframe name="content_frame"></iframe>
|
|
</div>
|
|
<!-- </div>
|
|
<div id="foot" style="text-align: botton;">
|
|
<b>版本所有@FLY-NOOB</b>
|
|
</div> -->
|
|
</body>
|
|
|
|
</html> |