Modularización de GKACHELE SaaS

This commit is contained in:
gkachele
2026-01-17 11:40:17 +01:00
commit b6820848b8
1338 changed files with 339275 additions and 0 deletions

95
demo/templates/login.html Normal file
View File

@@ -0,0 +1,95 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Login - Demo</title>
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
font-family: Arial, sans-serif;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
}
.container {
background: white;
padding: 40px;
border-radius: 10px;
box-shadow: 0 10px 40px rgba(0,0,0,0.2);
max-width: 400px;
width: 100%;
}
h1 { margin-bottom: 20px; color: #333; }
input {
width: 100%;
padding: 12px;
margin-bottom: 15px;
border: 1px solid #ddd;
border-radius: 5px;
}
.btn {
width: 100%;
padding: 12px;
background: #667eea;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
font-size: 16px;
}
.btn:hover { background: #5568d3; }
a { color: #667eea; text-decoration: none; }
</style>
</head>
<body>
<div class="container">
<h1>🔐 Iniciar Sesión</h1>
<form id="loginForm">
<input type="email" id="email" placeholder="Email" required>
<input type="password" id="password" placeholder="Contraseña" required>
<button type="submit" class="btn">Iniciar Sesión</button>
</form>
<p style="text-align: center; margin-top: 15px;">
<a href="/register">¿No tienes cuenta? Regístrate</a>
</p>
</div>
<script>
document.getElementById('loginForm').addEventListener('submit', async (e) => {
e.preventDefault();
const data = {
email: document.getElementById('email').value,
password: document.getElementById('password').value
};
const res = await fetch('/login', {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify(data)
});
let result;
try {
result = await res.json();
} catch (e) {
const text = await res.text();
console.error('❌ Servidor devolvió HTML:', text.substring(0, 200));
alert('❌ Error del servidor. Revisa la consola.');
return;
}
if (result.success) {
console.log('[LOGIN FRONTEND] Respuesta recibida:', result);
console.log('[LOGIN FRONTEND] Redirect URL:', result.redirect);
const redirectUrl = result.redirect || '/dashboard';
console.log('[LOGIN FRONTEND] Redirigiendo a:', redirectUrl);
window.location.href = redirectUrl;
} else {
alert('❌ ' + (result.error || 'Error al iniciar sesión'));
}
});
</script>
</body>
</html>