diff options
author | Jesús <heckyel@hyperbola.info> | 2019-12-27 12:18:55 -0500 |
---|---|---|
committer | Jesús <heckyel@hyperbola.info> | 2019-12-27 12:18:55 -0500 |
commit | 2f35eda0ca709953453eb56269e96d70456ac820 (patch) | |
tree | fb8a9dd7953110018489b4a61b9614ff037afd91 /templates/js/formulario.js | |
parent | 93629809e69f45cb529551a27a03a31885b73619 (diff) | |
download | portfolio-2f35eda0ca709953453eb56269e96d70456ac820.tar.lz portfolio-2f35eda0ca709953453eb56269e96d70456ac820.tar.xz portfolio-2f35eda0ca709953453eb56269e96d70456ac820.zip |
static contact and remove mail.php form
Diffstat (limited to 'templates/js/formulario.js')
-rw-r--r-- | templates/js/formulario.js | 64 |
1 files changed, 0 insertions, 64 deletions
diff --git a/templates/js/formulario.js b/templates/js/formulario.js deleted file mode 100644 index 00bd9a8..0000000 --- a/templates/js/formulario.js +++ /dev/null @@ -1,64 +0,0 @@ -/* -@licstart The following is the entire license notice for the -JavaScript code in this page. - -Copyleft 2019 | Heckyel - -This program is free software: you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by -the Free Software Foundation, either version 3 of the License, or -(at your option) any later version. - -This program is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. -See the GNU General Public License for more details. - -@licend The above is the entire license notice -for the JavaScript code in this page. -*/ - -(function(){ - let formulario = document.getElementById('formulario'), - nombre = formulario.nombre, - correo = formulario.correo, - mensaje = formulario.mensaje, - error = document.getElementById('error'); - - function validarNombre(e){ - if(nombre.value == '' || nombre.value == null){ - console.info('Por favor completa el nombre'); - error.style.display = 'block'; - error.innerHTML = error.innerHTML + '<li>Por favor completa el nombre</li>'; - e.preventDefault(); - } - } - - function validarCorreo(e){ - if(correo.value == '' || correo.value == null){ - console.info('Por favor completa el correo'); - error.style.display = 'block'; - error.innerHTML = error.innerHTML + '<li>Por favor completa el correo</li>'; - e.preventDefault(); - } - } - - function validarMensaje(e){ - if(mensaje.value == '' || mensaje.value == null){ - console.info('Por favor completa el mensaje'); - error.style.display = 'block'; - error.innerHTML = error.innerHTML + '<li>Por favor completa el mensaje</li>'; - e.preventDefault(); - } - } - - function validarFormulario(e){ - error.innerHTML = ''; - error.style.display = 'none'; - validarNombre(e); - validarCorreo(e); - validarMensaje(e); - } - - formulario.addEventListener('submit', validarFormulario); -}()); |