12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <script type="text/javascript" src="__static__/js/jquery-1.10.2.min.js"></script>
- <link rel="stylesheet" href="__static__/css/bootstrap.min.css">
- <script type="text/javascript" src="__static__/js/bootstrap.min.js"></script>
- <title>首页</title>
- <style>
- * {
- -webkit-box-sizing: border-box;
- -moz-box-sizing: border-box;
- box-sizing: border-box;
- }
- body,html{
- height: 100%;
- font-size: 14px;
- margin: 0px;
- padding: 0px;
- min-width: 1200px!important;
- }
- .header{color: white;}
- </style>
- </head>
- <body>
- <div class="container-fluid header" style="padding: 5px; background:#23262E">
- <div class="row">
- <div class="col-sm-11 text-center"><h1>电信NBIoT管理平台</h1></div>
- <div class="col-sm-1">
- <h3 style="line-height: 30px;"> {$account}
- <span class="logout" onclick="logout()" style="cursor: pointer;">退出</span>
- </h3>
- </div>
- </div>
- </div>
-
- <script>
- //退出登录
- function logout(){
- window.location.href='{:url("login/logout")}';
- }
- </script>
|