984 045 097
Formulario de registro form{ background-color: #fff; padding: 20px; border-radius: 5px; box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); } input[type="text"], input[type="email"], input[type="password"], input[type="tel"]{ width: 100%; padding: 10px; margin: 10px 0; border: 1px solid #ccc; border-radius: 5px; } input[type="submit"]{ background-color: #4CAF50; color: white; padding: 10px 15px; border: none; border-radius: 5px; cursor: pointer; } input[type="submit"]:hover{ background-color: #45a049; } .link{ text-align: center; margin-top: 10px; }

Registro de Usuario

function validatePassword(){ var password = document.getElementById("password").value; var confirmPassword = document.getElementById("confirm_password").value; if (password != confirmPassword) { alert("Las contraseñas no coinciden."); return false; } return true; }
Ir al contenido