-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
112 lines (102 loc) · 5.4 KB
/
index.html
File metadata and controls
112 lines (102 loc) · 5.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
<!DOCTYPE html>
<html>
<head>
<title>Home</title>
<!-- JS SCRIPTS -->
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script text="text/javascript" src="js/index.js"></script>
<script text="text/javascript" src="js/minecraft-server-status.js"></script>
<!-- CSS SHEETS -->
<link rel="stylesheet" href="./css/index.css"/>
<!-- metas -->
<meta charset="utf-8">
</head>
<body>
<header>
<p>Website still under developement :D </p>
</header>
<div class="main-container">
<!-- div for scrolling content -->
<div>
<div class="left side-pane">
</div>
<div class="middle-pane">
<!-- ajout 02/02/25 anto -->
<div class="bios">
<div class="container">
<div class="header">
Rpi Apache Webpage | Copyright (C) 2024 - ֳֻẗ | Bitwise, Inc.
</div>
<div class="menu">
<span class="selected">HOME</span>
<span>SSH</span>
<span>FILE MANAGMENT</span>
<span>ACCOUNTS</span>
<span>MINECRAFT</span>
<span>MISC</span>
</div>
<div class="content">
<div class="left-section">
<p><strong>Administrator Password Status:</strong> Not Installed</p>
<p><strong>User Password Status:</strong> Not Installed</p>
<p><strong>Set Administrator Password:</strong> [Disabled]</p>
<p><strong>Set User Password</strong></p>
<p><strong>Power ON Password</strong></p>
<p><strong>Dynamic bios:</strong> Not Installed</p>
</div>
<div class="right-section">
<p>Administrator password is used if Power On Password is enabled and to control change access in BIOS Setup.</p>
<p>Length is 1-14 characters. Case sensitive alphabetic, numeric and special characters are allowed.</p>
<p>Note: Administrator password must be set in order to use the User account.</p>
<div class="instructions">
→ : Select Screen<br>
↑↓ : Select Item<br>
Enter : Select<br>
+/- : Change Opt.<br>
F1 : General Help<br>
F9 : Setup Defaults<br>
F10 : Save ESC : Exit
</div>
</div>
</div>
<div class="footer">
Version: 0.0.1 | Copyright (C) 2024 - ֳֻẗ | Bitwise, Inc.
</div>
</div>
</div>
</div>
<!-- ajout 02/02/25 anto -->
<div class="right side-pane">
<div class="side-bubble">
<div class="section-head">
<p>Minecraft Server Status</p>
<img id="server-status-reload" onclick="getServerStatus()" src="./medias/reload.png"/>
</div>
<div class="section-body">
<img id="minecraft-logo" src="medias/minecraft-logo.png"/>
<table id="server-status">
<caption>
<span>
<img id="off" src="./medias/xp_orb_dead.png"/>
<img id="on" src="./medias/xp_orb.gif"/>
<p>LOADING...</p>
</span>
</caption>
<tr>
<td><p id="players" class="stats">Players : --/--</p></td>
<td><p id="version" class="stats">Version : -.--.-</p></td>
</tr>
<tr>
<td colspan="2" id="server-adress">
<p>Copied !</p>
<strong>Play NOW at : <serverAdress>bitwise.re</serverAdress></strong>
</td>
</tr>
</table>
</div>
</div>
</div>
</div>
</div>
</body>
</html>