-
Notifications
You must be signed in to change notification settings - Fork 0
/
empresa.js
54 lines (50 loc) · 1.56 KB
/
empresa.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
// Validación con JS para mi correo //
const nombre = document.getElementById("name")
const apellido = document.getElementById("apellido")
const ciudad = document.getElementById("ciudad")
const telefono = document.getElementById("telefono")
const local = document.getElementById("local")
const email = document.getElementById("email")
const pass = document.getElementById("password")
const form = document.getElementById("form")
const parrafo = document.getElementById("warnings")
form.addEventListener("submit", e=>{
e.preventDefault()
let warnings = ""
let entrar = false
let regexEmail = /^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,4})+$/
parrafo.innerHTML = ""
if(nombre.value.length <4){
warnings += `El nombre no es valido <br>`
entrar = true
}
if(apellido.value.length <5){
warnings += `El apellido no es valido <br>`
entrar = true
}
if(ciudad.value.length <5){
warnings += `La ciudad no es valida <br>`
entrar = true
}
if(telefono.value.length <8){
warnings += `El telefono no es valido <br>`
entrar = true
}
if(local.value.length <6){
warnings += `El local no es valido <br>`
entrar = true
}
if(!regexEmail.test(email.value)){
warnings += `El email no es valido <br>`
entrar = true
}
if(pass.value.length < 8){
warnings += `La contraseña no es valida <br>`
entrar = true
}
if(entrar){
parrafo.innerHTML = warnings
}else{
parrafo.innerHTML = "Enviado con éxito!"
}
})