1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- <!DOCTYPE html>
- <html>
- <head>
- <!-- Standard Meta -->
- <meta charset="utf-8" />
- <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
- <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
- <!-- Site Properties -->
- <title>Minecraft Server</title>
- <script src="https://code.jquery.com/jquery-3.1.1.min.js" crossorigin="anonymous"></script>
- <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/semantic-ui@2.4.2/dist/semantic.min.css">
- <script src="https://cdn.jsdelivr.net/npm/semantic-ui@2.4.2/dist/semantic.min.js"></script>
- <style>
- html {
- overflow: hidden;
- height: 100%;
- }
-
- body {
- background-color: #fcfcfc;
- overflow: hidden !important;
- height: 100%;
- }
-
- iframe {
- border: none;
- }
- </style>
- </head>
- <body>
- <div class="ui top attached tabular menu">
- <a class="item active" data-tab="1">Ban IP</a>
- <a class="item" data-tab="2">Ban Player</a>
- <a class="item" data-tab="3">OP</a>
- <a class="item" data-tab="4">Properties</a>
- <a class="item" data-tab="5">Whitelist</a>
- <a class="item" data-tab="6">EULA</a>
- </div>
- <div class="ui bottom attached tab segment active" style="height:100%;width:100%" data-tab="1">
- <iframe src="/setting/banip.html" style="height: calc(100vh - 85px);width:100%" title=""></iframe>
- </div>
- <div class="ui bottom attached tab segment" style="height:100%;width:100%" data-tab="2">
- <iframe src="/setting/banplayer.html" style="height: calc(100vh - 85px);width:100%" title=""></iframe>
- </div>
- <div class="ui bottom attached tab segment" style="height:100%;width:100%" data-tab="3">
- <iframe src="/setting/ops.html" style="height: calc(100vh - 85px);width:100%" title=""></iframe>
- </div>
- <div class="ui bottom attached tab segment" style="height:100%;width:100%" data-tab="4">
- <iframe src="/setting/properties.html" style="height: calc(100vh - 85px);width:100%" title=""></iframe>
- </div>
- <div class="ui bottom attached tab segment" style="height:100%;width:100%" data-tab="5">
- <iframe src="/setting/whitelist.html" style="height: calc(100vh - 85px);width:100%" title=""></iframe>
- </div>
- <div class="ui bottom attached tab segment" style="height:100%;width:100%" data-tab="6">
- <iframe src="/setting/eula.html" style="height: calc(100vh - 85px);width:100%" title=""></iframe>
- </div>
- <script>
- $('.menu .item')
- .tab();
- </script>
- </body>
- </html>
|