Upload script.js
Browse files- www/script.js +4 -0
www/script.js
ADDED
|
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
$(document).ready(function () {
|
| 2 |
+
// Hide the authentication checkbox
|
| 3 |
+
$('#authenticated').parent().hide();
|
| 4 |
+
});
|