From 25760ce59e8faec0e4dfd0e0d048628ff6c26a77 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jes=C3=BAs?= Date: Sat, 24 Feb 2018 18:53:36 -0500 Subject: correcciones: quita espaciado innecesario, quita M^, usa Unicode UTF-8 --- demo/demo_error.html | 108 +++++++++++++++++++++++----------------------- demo/demo_index.html | 112 ++++++++++++++++++++++++------------------------ demo/formulario.js | 89 +++++++++++++++++++------------------- demo/funciones.js | 10 ++--- demo/humans.txt | 36 ++++++++-------- demo/sitemap.xml | 8 ++-- terminado/error.html | 108 +++++++++++++++++++++++----------------------- terminado/formulario.js | 89 +++++++++++++++++++------------------- terminado/funciones.js | 10 ++--- terminado/humans.txt | 36 ++++++++-------- terminado/index.html | 112 ++++++++++++++++++++++++------------------------ terminado/sitemap.xml | 8 ++-- 12 files changed, 364 insertions(+), 362 deletions(-) diff --git a/demo/demo_error.html b/demo/demo_error.html index b766134..64e17c6 100755 --- a/demo/demo_error.html +++ b/demo/demo_error.html @@ -1,57 +1,57 @@ - - Portal Cautivo - - - - - - - - - - - - - -
-
- -
-
-
- candado -
-
-

Bienvenido a Cybersy

-
-

$PORTAL_MESSAGE$

-
- - -
-
- - -
- - -
-
-
-
- - - + + Portal Cautivo + + + + + + + + + + + + + +
+
+ +
+
+
+ candado +
+
+

Bienvenido a Cybersy

+
+

$PORTAL_MESSAGE$

+
+ + +
+
+ + +
+ + +
+
+
+
+ + + diff --git a/demo/demo_index.html b/demo/demo_index.html index fef6032..cd1a428 100755 --- a/demo/demo_index.html +++ b/demo/demo_index.html @@ -1,56 +1,56 @@ - - - - Portal Cautivo - - - - - - - - - - - - - -
-
- -
-
-
- candado -
-
-

Bienvenido a Cybersy

-
-
- - -
-
- - -
- - -
-
-
-
- - - - + + + + Portal Cautivo + + + + + + + + + + + + + +
+
+ +
+
+
+ candado +
+
+

Bienvenido a Cybersy

+
+
+ + +
+
+ + +
+ + +
+
+
+
+ + + + diff --git a/demo/formulario.js b/demo/formulario.js index 42e9f4e..4cc7620 100755 --- a/demo/formulario.js +++ b/demo/formulario.js @@ -25,54 +25,55 @@ * */ (function(){ - var formulario = document.formulario_registro, - elementos = formulario.elements; - // Funciones de comprobación y enviar - var validarInputs = function() { - for(var i = 0; i < elementos.length; i++) { - if (elementos[i].type == "text" || elementos[i].type == "password") { - if (elementos[i].value == 0) { - console.log('El campo' + elementos[i].name + ' esta incompleto'); - elementos[i].className = elementos[i].className + ' error'; - return false; - } else{ - elementos[i].className = elementos[i].className.replace(" error", ""); - } - } - } + var formulario = document.formulario_registro, + elementos = formulario.elements; + // Funciones de comprobación y enviar + var validarInputs = function() { + for(var i = 0; i < elementos.length; i++) { + if (elementos[i].type == "text" || elementos[i].type == "password") { + if (elementos[i].value == 0) { + console.log('El campo' + elementos[i].name + ' esta incompleto'); + elementos[i].className = elementos[i].className + ' error'; + return false; + } else { + elementos[i].className = elementos[i].className.replace(" error", ""); + } + } + } - return true; - }; + return true; - var enviar = function(e) { - if(!validarInputs()){ - console.log("Falto validar los Input"); - e.preventDefault(); - } else { - console.log('Envia'); - } - }; + }; - // Funciones Blur y Focus - var focusInput = function() { - this.parentElement.children[1].className = "label active"; - this.parentElement.children[0].className = this.parentElement.children[0].className.replace("error", ""); - }; + var enviar = function(e) { + if(!validarInputs()){ + console.log("Falto validar los Input"); + e.preventDefault(); + } else { + console.log('Envia'); + } + }; - var blurInput = function() { - if (this.value <= 0) { - this.parentElement.children[1].className = "label"; - this.parentElement.children[0].className = this.parentElement.children[0].className + " error"; - } - }; + // Funciones Blur y Focus + var focusInput = function() { + this.parentElement.children[1].className = "label active"; + this.parentElement.children[0].className = this.parentElement.children[0].className.replace("error", ""); + }; - // Eventos - formulario.addEventListener("submit", enviar); + var blurInput = function() { + if (this.value <= 0) { + this.parentElement.children[1].className = "label"; + this.parentElement.children[0].className = this.parentElement.children[0].className + " error"; + } + }; - for (var i = 0; i< elementos.length; i++){ - if (elementos[i].type == "text" || elementos[i].type == "password") { - elementos[i].addEventListener("focus", focusInput); - elementos[i].addEventListener("blur", blurInput); - } - } + // Eventos + formulario.addEventListener("submit", enviar); + + for (var i = 0; i< elementos.length; i++){ + if (elementos[i].type == "text" || elementos[i].type == "password") { + elementos[i].addEventListener("focus", focusInput); + elementos[i].addEventListener("blur", blurInput); + } + } }()) diff --git a/demo/funciones.js b/demo/funciones.js index 7e03d96..1c8a5fb 100755 --- a/demo/funciones.js +++ b/demo/funciones.js @@ -1,9 +1,9 @@ /*! @license magnet:?xt=urn:btih:1f739d935676111cfff4b4693e3816e664797050&dn=gpl-3.0.txt GPL-v3-or-Later */ $(document).ready(function(){ - //body - //window - if($("body").height() < $(window).height()){ - $("footer").css({"position":"absolute","bottom":"0px"}); - } + //body + //window + if($("body").height() < $(window).height()){ + $("footer").css({"position":"absolute","bottom":"0px"}); + } }); /*! @license-end */ diff --git a/demo/humans.txt b/demo/humans.txt index 380205f..de31b89 100755 --- a/demo/humans.txt +++ b/demo/humans.txt @@ -1,18 +1,18 @@ -/* cybersy.blogspot.com | Red de soporte informático*/ -/* TEAM */ - Creator: Jesús Eduardo - Contact: Heckyel[at]openmailbox[dot]org - From: Tumbes city, Perú - -/* IN MEMORIAL */ - Dash - -/* THANKS */ - Yui, Nagato, Usui - -/* SITE */ - Last update: 2016/11/02 - Language: Spanish - Standards: HTML5, CSS3, JavaScript - Components: jQuery - Software: GNUemacs, Gimp. +/* conocimientoslibres.tuxfamily.org | ConocimientosLibres */ +/* TEAM */ + Creator: Jesús Eduardo + Contact: heckyel[at]riseup[dot]net + From: Tumbes city, Perú + +/* IN MEMORIAL */ + Dash + +/* THANKS */ + Yui, Nagato, Usui + +/* SITE */ + Last update: 2018/02/24 + Language: Spanish + Standards: HTML5, CSS3, JavaScript + Components: jQuery + Software: GNUemacs, Gimp. diff --git a/demo/sitemap.xml b/demo/sitemap.xml index c7af3a8..34ea682 100755 --- a/demo/sitemap.xml +++ b/demo/sitemap.xml @@ -1,4 +1,4 @@ - - - http://pfsense.com/index.html - \ No newline at end of file + + + http://pfsense.com/index.html + diff --git a/terminado/error.html b/terminado/error.html index b330255..ee62467 100755 --- a/terminado/error.html +++ b/terminado/error.html @@ -1,57 +1,57 @@ - - Portal Cautivo - - - - - - - - - - - - - -
-
- -
-
-
- candado -
-
-

Bienvenido a Cybersy

-
-

$PORTAL_MESSAGE$

-
- - -
-
- - -
- - -
-
-
-
- - - + + Portal Cautivo + + + + + + + + + + + + + +
+
+ +
+
+
+ candado +
+
+

Bienvenido a Cybersy

+
+

$PORTAL_MESSAGE$

+
+ + +
+
+ + +
+ + +
+
+
+
+ + + diff --git a/terminado/formulario.js b/terminado/formulario.js index 42e9f4e..4cc7620 100755 --- a/terminado/formulario.js +++ b/terminado/formulario.js @@ -25,54 +25,55 @@ * */ (function(){ - var formulario = document.formulario_registro, - elementos = formulario.elements; - // Funciones de comprobación y enviar - var validarInputs = function() { - for(var i = 0; i < elementos.length; i++) { - if (elementos[i].type == "text" || elementos[i].type == "password") { - if (elementos[i].value == 0) { - console.log('El campo' + elementos[i].name + ' esta incompleto'); - elementos[i].className = elementos[i].className + ' error'; - return false; - } else{ - elementos[i].className = elementos[i].className.replace(" error", ""); - } - } - } + var formulario = document.formulario_registro, + elementos = formulario.elements; + // Funciones de comprobación y enviar + var validarInputs = function() { + for(var i = 0; i < elementos.length; i++) { + if (elementos[i].type == "text" || elementos[i].type == "password") { + if (elementos[i].value == 0) { + console.log('El campo' + elementos[i].name + ' esta incompleto'); + elementos[i].className = elementos[i].className + ' error'; + return false; + } else { + elementos[i].className = elementos[i].className.replace(" error", ""); + } + } + } - return true; - }; + return true; - var enviar = function(e) { - if(!validarInputs()){ - console.log("Falto validar los Input"); - e.preventDefault(); - } else { - console.log('Envia'); - } - }; + }; - // Funciones Blur y Focus - var focusInput = function() { - this.parentElement.children[1].className = "label active"; - this.parentElement.children[0].className = this.parentElement.children[0].className.replace("error", ""); - }; + var enviar = function(e) { + if(!validarInputs()){ + console.log("Falto validar los Input"); + e.preventDefault(); + } else { + console.log('Envia'); + } + }; - var blurInput = function() { - if (this.value <= 0) { - this.parentElement.children[1].className = "label"; - this.parentElement.children[0].className = this.parentElement.children[0].className + " error"; - } - }; + // Funciones Blur y Focus + var focusInput = function() { + this.parentElement.children[1].className = "label active"; + this.parentElement.children[0].className = this.parentElement.children[0].className.replace("error", ""); + }; - // Eventos - formulario.addEventListener("submit", enviar); + var blurInput = function() { + if (this.value <= 0) { + this.parentElement.children[1].className = "label"; + this.parentElement.children[0].className = this.parentElement.children[0].className + " error"; + } + }; - for (var i = 0; i< elementos.length; i++){ - if (elementos[i].type == "text" || elementos[i].type == "password") { - elementos[i].addEventListener("focus", focusInput); - elementos[i].addEventListener("blur", blurInput); - } - } + // Eventos + formulario.addEventListener("submit", enviar); + + for (var i = 0; i< elementos.length; i++){ + if (elementos[i].type == "text" || elementos[i].type == "password") { + elementos[i].addEventListener("focus", focusInput); + elementos[i].addEventListener("blur", blurInput); + } + } }()) diff --git a/terminado/funciones.js b/terminado/funciones.js index 7e03d96..1c8a5fb 100755 --- a/terminado/funciones.js +++ b/terminado/funciones.js @@ -1,9 +1,9 @@ /*! @license magnet:?xt=urn:btih:1f739d935676111cfff4b4693e3816e664797050&dn=gpl-3.0.txt GPL-v3-or-Later */ $(document).ready(function(){ - //body - //window - if($("body").height() < $(window).height()){ - $("footer").css({"position":"absolute","bottom":"0px"}); - } + //body + //window + if($("body").height() < $(window).height()){ + $("footer").css({"position":"absolute","bottom":"0px"}); + } }); /*! @license-end */ diff --git a/terminado/humans.txt b/terminado/humans.txt index ec03dbd..de31b89 100755 --- a/terminado/humans.txt +++ b/terminado/humans.txt @@ -1,18 +1,18 @@ -/* cybersy.blogspot.com | Red de soporte informático*/ -/* TEAM */ - Creator: Jesús Eduardo - Contact: Heckyel[at]openmailbox[dot]org - From: Tumbes city, Perú - -/* IN MEMORIAL */ - Dash - -/* THANKS */ - Yui, Nagato, Usui - -/* SITE */ - Last update: 2016/11/02 - Language: Spanish - Standards: HTML5, CSS3, JavaScript - Components: jQuery - Software: GNUemacs, Gimp. +/* conocimientoslibres.tuxfamily.org | ConocimientosLibres */ +/* TEAM */ + Creator: Jesús Eduardo + Contact: heckyel[at]riseup[dot]net + From: Tumbes city, Perú + +/* IN MEMORIAL */ + Dash + +/* THANKS */ + Yui, Nagato, Usui + +/* SITE */ + Last update: 2018/02/24 + Language: Spanish + Standards: HTML5, CSS3, JavaScript + Components: jQuery + Software: GNUemacs, Gimp. diff --git a/terminado/index.html b/terminado/index.html index ef92cb9..3705dfa 100755 --- a/terminado/index.html +++ b/terminado/index.html @@ -1,56 +1,56 @@ - - - - Portal Cautivo - - - - - - - - - - - - - -
-
- -
-
-
- candado -
-
-

Bienvenido a Cybersy

-
-
- - -
-
- - -
- - -
-
-
-
- - - - + + + + Portal Cautivo + + + + + + + + + + + + + +
+
+ +
+
+
+ candado +
+
+

Bienvenido a Cybersy

+
+
+ + +
+
+ + +
+ + +
+
+
+
+ + + + diff --git a/terminado/sitemap.xml b/terminado/sitemap.xml index c7af3a8..34ea682 100755 --- a/terminado/sitemap.xml +++ b/terminado/sitemap.xml @@ -1,4 +1,4 @@ - - - http://pfsense.com/index.html - \ No newline at end of file + + + http://pfsense.com/index.html + -- cgit v1.2.3