mirror of
https://github.com/billz/raspap-webgui.git
synced 2023-10-10 13:37:24 +02:00
Updated favicon
This commit is contained in:
parent
1917d8cc0a
commit
3348bf7744
BIN
bower_components/.DS_Store
vendored
BIN
bower_components/.DS_Store
vendored
Binary file not shown.
BIN
bower_components/bootstrap/.DS_Store
vendored
BIN
bower_components/bootstrap/.DS_Store
vendored
Binary file not shown.
BIN
bower_components/bootstrap/dist/.DS_Store
vendored
BIN
bower_components/bootstrap/dist/.DS_Store
vendored
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
bower_components/jquery/.DS_Store
vendored
BIN
bower_components/jquery/.DS_Store
vendored
Binary file not shown.
BIN
dist/.DS_Store
vendored
BIN
dist/.DS_Store
vendored
Binary file not shown.
74
dist/js/functions.js
vendored
Normal file
74
dist/js/functions.js
vendored
Normal file
@ -0,0 +1,74 @@
|
|||||||
|
function WiFiDown() {
|
||||||
|
var down = confirm("Take down wlan0 ?");
|
||||||
|
if(down) {
|
||||||
|
} else {
|
||||||
|
alert("Action cancelled");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function UpdateNetworks() {
|
||||||
|
var existing = document.getElementById("networkbox").getElementsByTagName('div').length;
|
||||||
|
document.getElementById("Networks").value = existing;
|
||||||
|
}
|
||||||
|
|
||||||
|
function AddNetwork() {
|
||||||
|
// existing = document.getElementById("networkbox").getElementsByTagName('div').length;
|
||||||
|
// existing++;
|
||||||
|
Networks++
|
||||||
|
var Networks = document.getElementById('Networks').value;
|
||||||
|
document.getElementById('networkbox').innerHTML += '<div id="Networkbox'+Networks+'" class="Networkboxes"><div class="row"><div class="col-lg-12"><h4>Network '+Networks+'</h4> \
|
||||||
|
<div class="row"><div class="form-group col-md-4"><label for="code">SSID</label><input type="text" class="form-control" name="ssid'+Networks+'" onkeyup="CheckSSID(this)"></div></div> \
|
||||||
|
<div class="row"><div class="form-group col-md-4"><label for="code">PSK</label><input type="password" class="form-control" name="psk'+Networks+'" onkeyup="CheckPSK(this)"></div></div> \
|
||||||
|
<div class="row"><div class="form-group col-md-4"><input type="button" class="btn btn-outline btn-primary" value="Cancel" onClick="DeleteNetwork('+Networks+')" /></div></div>';
|
||||||
|
Networks++;
|
||||||
|
document.getElementById('Networks').value=Networks;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
function AddScanned(network) {
|
||||||
|
|
||||||
|
existing = document.getElementById("networkbox").getElementsByTagName('div').length;
|
||||||
|
var Networks = document.getElementById('Networks').value;
|
||||||
|
//if(existing != 0) {
|
||||||
|
Networks++;
|
||||||
|
//}
|
||||||
|
|
||||||
|
document.getElementById('Networks').value=Networks;
|
||||||
|
document.getElementById('networkbox').innerHTML += '<div id="Networkbox'+Networks+'" class="Networkboxes"><div class="col-lg-12"><h4>Network '+Networks+'</h4> \
|
||||||
|
<div class="row"><div class="form-group col-md-4"><label for="code">SSID</</label><input type="text" class="form-control" name="ssid'+Networks+'" id="ssid'+Networks+'" onkeyup="CheckSSID(this)"></div></div> \
|
||||||
|
<div class="row"><div class="form-group col-md-4"><label for="code">PSK</label><input type="password" class="form-control" name="psk'+Networks+'" onkeyup="CheckPSK(this)"></div></div> \
|
||||||
|
<div class="row"><div class="form-group col-md-4"><input type="button" class="btn btn-outline btn-primary" value="Cancel" onClick="DeleteNetwork('+Networks+')" /></div></div>';
|
||||||
|
document.getElementById('ssid'+Networks).value = network;
|
||||||
|
if(existing == 0) {
|
||||||
|
Networks++
|
||||||
|
document.getElementById('Networks').value = Networks;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function CheckSSID(ssid) {
|
||||||
|
if(ssid.value.length>31) {
|
||||||
|
ssid.style.background='#FFD0D0';
|
||||||
|
document.getElementById('Save').disabled = true;
|
||||||
|
} else {
|
||||||
|
ssid.style.background='#D0FFD0'
|
||||||
|
document.getElementById('Save').disabled = false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function CheckPSK(psk) {
|
||||||
|
if(psk.value.length < 8) {
|
||||||
|
psk.style.background='#FFD0D0';
|
||||||
|
document.getElementById('Save').disabled = true;
|
||||||
|
} else {
|
||||||
|
psk.style.background='#D0FFD0';
|
||||||
|
document.getElementById('Save').disabled = false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function DeleteNetwork(network) {
|
||||||
|
element = document.getElementById('Networkbox'+network);
|
||||||
|
element.parentNode.removeChild(element);
|
||||||
|
var Networks = document.getElementById('Networks').value;
|
||||||
|
Networks--
|
||||||
|
document.getElementById('Networks').value = Networks;
|
||||||
|
}
|
Binary file not shown.
Before Width: | Height: | Size: 53 KiB |
BIN
img/favicon.png
BIN
img/favicon.png
Binary file not shown.
Before Width: | Height: | Size: 1.5 KiB After Width: | Height: | Size: 1.7 KiB |
BIN
img/raspAP-logo.png
Normal file
BIN
img/raspAP-logo.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 28 KiB |
@ -36,13 +36,10 @@ define('RASPI_TORPROXY_CONFIG', '/etc/tor/torrc');
|
|||||||
define('RASPI_OPENVPN_ENABLED', false );
|
define('RASPI_OPENVPN_ENABLED', false );
|
||||||
define('RASPI_TORPROXY_ENABLED', false );
|
define('RASPI_TORPROXY_ENABLED', false );
|
||||||
|
|
||||||
ini_set('display_errors', 'off');
|
|
||||||
|
|
||||||
include_once( 'includes/functions.php' );
|
include_once( 'includes/functions.php' );
|
||||||
|
|
||||||
$output = $return = 0;
|
$output = $return = 0;
|
||||||
$page = $_GET['page'];
|
$page = $_GET['page'];
|
||||||
|
|
||||||
?>
|
?>
|
||||||
|
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
@ -77,7 +74,7 @@ $page = $_GET['page'];
|
|||||||
<!-- Custom CSS -->
|
<!-- Custom CSS -->
|
||||||
<link href="dist/css/custom.css" rel="stylesheet">
|
<link href="dist/css/custom.css" rel="stylesheet">
|
||||||
|
|
||||||
<link rel="shortcut icon" type="image/png" href="../img/favicon.png?v=2.0">
|
<link rel="shortcut icon" type="image/png" href="../img/favicon.png">
|
||||||
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
|
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
|
||||||
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
|
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
|
||||||
<!--[if lt IE 9]>
|
<!--[if lt IE 9]>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user