-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathregistro.html
75 lines (68 loc) · 3.23 KB
/
registro.html
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>José Pardo - Registro</title>
<link rel="shortcut icon" href="./src/images/Logo.ico" type="image/x-icon">
<link rel="stylesheet" href="./styles/stylehomeregistro.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
</head>
<body>
<div class="login-container">
<!-- Sección izquierda -->
<div class="left-section">
<h1>Regístrate en el Sistema de Gestión</h1>
<p>Completa el formulario para crear una nueva cuenta y acceder a la plataforma de gestión de prácticas.</p>
<img src="/src/images/register.svg" alt="Logo" class="logo">
</div>
<!-- Sección derecha -->
<div class="right-section">
<div class="logo">
<img src="/src/images/logo-jose-pardo.png" alt="Registro">
</div>
<h2>Formulario de Registro</h2>
<p>Comienza a gestionar tus prácticas con nosotros.</p>
<form action="./src/api/register.php" method="post" id="registerForm">
<label for="email">Correo electrónico</label>
<input type="email" name="email" id="email" placeholder="Correo Electrónico" required>
<small>(El correo debe pertenecer a los dominios jpardo.edu.pe o josepardo.edu.pe.)</small>
<div class="password-container">
<label for="email">Cree su contraseña</label>
<input type="password" id="password" name="password" placeholder="Contraseña" required>
<i class="fas fa-eye toggle-password" id="toggleRegisterPassword"></i>
</div>
<button type="submit" class="login-button">Registrarse</button>
<a href="index.html" class="reset-link">¿Ya tienes cuenta? Inicia sesión</a>
</form>
</div>
</div>
<script>
// Mostrar/Ocultar contraseña
document.getElementById('toggleRegisterPassword').addEventListener('click', function () {
const passwordInput = document.getElementById('password');
const type = passwordInput.getAttribute('type') === 'password' ? 'text' : 'password';
passwordInput.setAttribute('type', type);
this.classList.toggle('fa-eye');
this.classList.toggle('fa-eye-slash');
});
// Validación de formulario
const form = document.getElementById('registerForm');
form.addEventListener('submit', function (event) {
const email = document.getElementById('email').value;
const password = document.getElementById('password').value;
const validDomains = ["jpardo.edu.pe", "josepardo.edu.pe"];
const emailDomain = email.split('@')[1];
const passwordRegex = /^(?=.*[a-z])(?=.*[A-Z])(?=.*\W).{8,}$/;
if (!validDomains.includes(emailDomain)) {
alert("El correo debe pertenecer a los dominios jpardo.edu.pe o josepardo.edu.pe.");
event.preventDefault();
}
if (!passwordRegex.test(password)) {
alert("La contraseña debe tener al menos 8 caracteres, una mayúscula, una minúscula, y un símbolo especial.");
event.preventDefault();
}
});
</script>
</body>
</html>