diff --git a/html/index.php b/html/index.php
index d5de46c7a..87f272de0 100755
--- a/html/index.php
+++ b/html/index.php
@@ -138,7 +138,6 @@ if ($config['page_refresh']) { echo('
-
' . "\n"); }
?>
diff --git a/html/js/custom.js b/html/js/custom.js
deleted file mode 100644
index 15abe0b54..000000000
--- a/html/js/custom.js
+++ /dev/null
@@ -1,22 +0,0 @@
-$.extend({
- password: function (length, special) {
- var iteration = 0;
- var password = "";
- var randomNumber;
- if(special === undefined){
- special = false;
- }
- while(iteration < length){
- randomNumber = (Math.floor((Math.random() * 100)) % 94) + 33;
- if(!special){
- if ((randomNumber >=33) && (randomNumber <=47)) { continue; }
- if ((randomNumber >=58) && (randomNumber <=64)) { continue; }
- if ((randomNumber >=91) && (randomNumber <=96)) { continue; }
- if ((randomNumber >=123) && (randomNumber <=126)) { continue; }
- }
- iteration++;
- password += String.fromCharCode(randomNumber);
- }
- return password;
- }
-});