-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathform-admin.php
More file actions
42 lines (41 loc) · 1.71 KB
/
Copy pathform-admin.php
File metadata and controls
42 lines (41 loc) · 1.71 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>BibleBox Admin</title>
</head>
<body>
<?php if ( $message ) {
echo $message;
}
?>
<p>Manage your settings below:</p>
<form method="POST">
<input type="hidden" name="action" value="admin" />
<p><label for="pass1">New Password (optional):</label><br/>
<input type="password" name="pass1" id="pass1" /></p>
<p><label for="pass2">New Password again (optional):</label><br/>
<input type="password" name="pass2" id="pass2" /></p>
<p><label for="ssid">SSID (Name of the Wi-Fi Network.)</label><br/>
<input type="text" name="ssid" id="ssid" value="<?php echo $admin->config['ssid']; ?>" /></p>
<p><label for="channel">Wi-Fi Channel:</label><br/>
<input type="text" name="channel" id="channel" value="<?php echo $admin->config['channel']; ?>" /></p>
<p><label for="hostname">Host Name (The Domain users will use, like biblebox.lan):</label><br/>
<input type="text" name="hostname" id="hostname" value="<?php echo $admin->config['hostname']; ?>" /></p>
<p><label for="txpower">Tx Power</label><br/>
<input type="text" name="txpower" id="txpower" value="<?php echo $admin->config['txpower']; ?>" /></p>
<p><label for="system_hostname">System Hostname</label><br/>
<input type="text" name="system_hostname" id="system_hostname" value="<?php echo $admin->config['system_hostname']; ?>" /></p>
<input type="submit" value="Update" />
</form>
<!--<form method="POST">
<input type="hidden" name="action" value="unmount" />
<input type="submit" value="Unmount USB Drive" />
</form>-->
<br/><br/>
<form method="POST">
<input type="hidden" name="action" value="logout" />
<input type="submit" value="Log Out" />
</form>
</body>
</html>