Migracion de sistema

This commit is contained in:
2026-05-02 04:28:47 -05:00
parent 03fc92b3fc
commit 6442251c2d
4 changed files with 593 additions and 15 deletions

268
web/terms.html Normal file
View File

@@ -0,0 +1,268 @@
<!doctype html>
<html class="dark" lang="es" dir="ltr">
<head>
<meta charset="utf-8" />
<meta content="width=device-width, initial-scale=1.0" name="viewport" />
<title>Términos y Condiciones - SIAX Monitor</title>
<link rel="icon" type="image/svg+xml" href="/static/icon/favicon.svg" />
<script src="https://cdn.tailwindcss.com?plugins=forms,container-queries"></script>
<link
href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:wght,FILL@100..700,0..1&display=swap"
rel="stylesheet"
/>
<script>
tailwind.config = {
darkMode: "class",
theme: {
extend: {
colors: {
primary: "#137fec",
"background-light": "#f6f7f8",
"background-dark": "#101922",
},
fontFamily: {
display: ["Inter", "sans-serif"],
},
borderRadius: {
DEFAULT: "0.25rem",
lg: "0.5rem",
xl: "0.75rem",
full: "9999px",
},
},
},
};
</script>
<style>
body {
font-family: "Inter", sans-serif;
}
.material-symbols-outlined {
font-variation-settings:
"FILL" 0,
"wght" 400,
"GRAD" 0,
"opsz" 24;
}
</style>
</head>
<body class="bg-background-dark font-display text-white min-h-screen flex flex-col">
<!-- Header -->
<header class="sticky top-0 z-50 w-full border-b border-solid border-[#283039] bg-background-dark/80 backdrop-blur-md px-4 md:px-10 py-3">
<div class="max-w-[1400px] mx-auto flex items-center justify-between">
<div class="flex items-center gap-4 text-white">
<div class="size-8 bg-primary rounded-lg flex items-center justify-center overflow-hidden">
<img src="/static/icon/logo.png" alt="Logo" class="w-full h-full object-cover" />
</div>
<h2 class="text-white text-lg font-bold leading-tight tracking-[-0.015em]">SIAX Monitor</h2>
</div>
<div class="flex items-center gap-6">
<nav class="hidden md:flex items-center gap-6">
<a class="text-[#9dabb9] text-sm font-medium hover:text-white transition-colors" href="/">Panel</a>
<a class="text-[#9dabb9] text-sm font-medium hover:text-white transition-colors" href="/logs">Registros</a>
<a class="text-primary text-sm font-medium border-b-2 border-primary pb-1" href="/terms">Términos</a>
<a class="text-[#9dabb9] text-sm font-medium hover:text-white transition-colors" href="/privacy">Privacidad</a>
</nav>
</div>
</div>
</header>
<!-- Content -->
<main class="flex-1 max-w-[860px] mx-auto w-full px-6 py-12">
<!-- Title -->
<div class="mb-10">
<div class="flex items-center gap-3 mb-3">
<span class="material-symbols-outlined text-primary text-3xl">gavel</span>
<h1 class="text-3xl font-bold text-white">Términos y Condiciones</h1>
</div>
<p class="text-[#9dabb9] text-sm">
Última actualización: <span class="text-white">21 de febrero de 2026</span>
</p>
<div class="mt-4 p-4 bg-primary/10 border border-primary/20 rounded-lg">
<p class="text-[#9dabb9] text-sm">
Al utilizar <strong class="text-white">SIAX Monitor</strong>, aceptas los presentes términos en su totalidad.
Si no estás de acuerdo con alguna parte, te pedimos que no uses el software.
</p>
</div>
</div>
<!-- Sections -->
<div class="space-y-8">
<!-- 1 -->
<section class="border border-[#283039] rounded-xl p-6 bg-[#161f2a]">
<h2 class="text-white text-lg font-semibold mb-3 flex items-center gap-2">
<span class="text-primary font-mono text-sm bg-primary/10 px-2 py-0.5 rounded">01</span>
Descripción del Software
</h2>
<p class="text-[#9dabb9] text-sm leading-relaxed">
<strong class="text-white">SIAX Monitor</strong> es una herramienta de monitoreo y gestión de aplicaciones
desarrollada por <strong class="text-white">Pablinux</strong> para <strong class="text-white">Xsystem</strong>,
con sede en Ecuador. Permite registrar, iniciar, detener y supervisar servicios del sistema operativo
a través de una interfaz web local. El software opera exclusivamente dentro de la infraestructura
del usuario y no transmite datos a servidores externos.
</p>
</section>
<!-- 2 -->
<section class="border border-[#283039] rounded-xl p-6 bg-[#161f2a]">
<h2 class="text-white text-lg font-semibold mb-3 flex items-center gap-2">
<span class="text-primary font-mono text-sm bg-primary/10 px-2 py-0.5 rounded">02</span>
Licencia de Uso
</h2>
<p class="text-[#9dabb9] text-sm leading-relaxed mb-3">
Se otorga una licencia personal, no exclusiva, no transferible y revocable para usar SIAX Monitor
en los entornos autorizados por Xsystem. Queda expresamente prohibido:
</p>
<ul class="space-y-2 text-sm text-[#9dabb9]">
<li class="flex items-start gap-2">
<span class="material-symbols-outlined text-red-400 text-[16px] mt-0.5">block</span>
Sublicenciar, vender o redistribuir el software sin autorización escrita.
</li>
<li class="flex items-start gap-2">
<span class="material-symbols-outlined text-red-400 text-[16px] mt-0.5">block</span>
Modificar o crear trabajos derivados sin consentimiento del autor.
</li>
<li class="flex items-start gap-2">
<span class="material-symbols-outlined text-red-400 text-[16px] mt-0.5">block</span>
Utilizar el software para fines ilegales o no autorizados.
</li>
<li class="flex items-start gap-2">
<span class="material-symbols-outlined text-red-400 text-[16px] mt-0.5">block</span>
Realizar ingeniería inversa del código fuente.
</li>
</ul>
</section>
<!-- 3 -->
<section class="border border-[#283039] rounded-xl p-6 bg-[#161f2a]">
<h2 class="text-white text-lg font-semibold mb-3 flex items-center gap-2">
<span class="text-primary font-mono text-sm bg-primary/10 px-2 py-0.5 rounded">03</span>
Responsabilidades del Usuario
</h2>
<p class="text-[#9dabb9] text-sm leading-relaxed mb-3">
El usuario es responsable de:
</p>
<ul class="space-y-2 text-sm text-[#9dabb9]">
<li class="flex items-start gap-2">
<span class="material-symbols-outlined text-green-400 text-[16px] mt-0.5">check_circle</span>
Mantener la seguridad del servidor donde se ejecuta SIAX Monitor.
</li>
<li class="flex items-start gap-2">
<span class="material-symbols-outlined text-green-400 text-[16px] mt-0.5">check_circle</span>
Gestionar correctamente los permisos de acceso a la interfaz web.
</li>
<li class="flex items-start gap-2">
<span class="material-symbols-outlined text-green-400 text-[16px] mt-0.5">check_circle</span>
Realizar copias de seguridad de su configuración y datos.
</li>
<li class="flex items-start gap-2">
<span class="material-symbols-outlined text-green-400 text-[16px] mt-0.5">check_circle</span>
Usar el software conforme a las leyes vigentes en Ecuador y las aplicables en su jurisdicción.
</li>
</ul>
</section>
<!-- 4 -->
<section class="border border-[#283039] rounded-xl p-6 bg-[#161f2a]">
<h2 class="text-white text-lg font-semibold mb-3 flex items-center gap-2">
<span class="text-primary font-mono text-sm bg-primary/10 px-2 py-0.5 rounded">04</span>
Limitación de Responsabilidad
</h2>
<p class="text-[#9dabb9] text-sm leading-relaxed">
SIAX Monitor se proporciona <strong class="text-white">"tal cual"</strong>, sin garantías de ningún tipo,
expresas o implícitas. Xsystem y Pablinux no se hacen responsables por daños directos, indirectos,
incidentales o consecuentes que resulten del uso o la imposibilidad de uso del software, incluyendo
pero no limitándose a: pérdida de datos, interrupciones de servicio, o daños en el sistema operativo
derivados de configuraciones incorrectas.
</p>
</section>
<!-- 5 -->
<section class="border border-[#283039] rounded-xl p-6 bg-[#161f2a]">
<h2 class="text-white text-lg font-semibold mb-3 flex items-center gap-2">
<span class="text-primary font-mono text-sm bg-primary/10 px-2 py-0.5 rounded">05</span>
Propiedad Intelectual
</h2>
<p class="text-[#9dabb9] text-sm leading-relaxed">
Todos los derechos de propiedad intelectual sobre SIAX Monitor, incluyendo su código fuente,
diseño, logotipos y documentación, son propiedad exclusiva de <strong class="text-white">Pablinux / Xsystem</strong>.
Quedan reservados todos los derechos no otorgados expresamente en estos términos.
</p>
</section>
<!-- 6 -->
<section class="border border-[#283039] rounded-xl p-6 bg-[#161f2a]">
<h2 class="text-white text-lg font-semibold mb-3 flex items-center gap-2">
<span class="text-primary font-mono text-sm bg-primary/10 px-2 py-0.5 rounded">06</span>
Modificaciones
</h2>
<p class="text-[#9dabb9] text-sm leading-relaxed">
Xsystem se reserva el derecho de modificar estos términos en cualquier momento. Los cambios
serán comunicados a través de la propia interfaz del software o mediante correo electrónico.
El uso continuado del software tras la publicación de cambios constituye aceptación de los
nuevos términos.
</p>
</section>
<!-- 7 -->
<section class="border border-[#283039] rounded-xl p-6 bg-[#161f2a]">
<h2 class="text-white text-lg font-semibold mb-3 flex items-center gap-2">
<span class="text-primary font-mono text-sm bg-primary/10 px-2 py-0.5 rounded">07</span>
Legislación Aplicable
</h2>
<p class="text-[#9dabb9] text-sm leading-relaxed">
Estos términos se rigen por las leyes vigentes en la <strong class="text-white">República del Ecuador</strong>.
Cualquier disputa derivada del uso de este software será sometida a la jurisdicción de los
tribunales competentes de Ecuador.
</p>
</section>
<!-- 8 - Contact -->
<section class="border border-primary/30 rounded-xl p-6 bg-primary/5">
<h2 class="text-white text-lg font-semibold mb-3 flex items-center gap-2">
<span class="material-symbols-outlined text-primary text-[20px]">mail</span>
Contacto
</h2>
<p class="text-[#9dabb9] text-sm leading-relaxed mb-4">
Para cualquier consulta relacionada con estos términos, puedes contactarnos a través de:
</p>
<div class="space-y-2">
<div class="flex items-center gap-3">
<span class="material-symbols-outlined text-primary text-[18px]">person</span>
<span class="text-sm text-[#9dabb9]">Desarrollador:
<a href="mailto:pablinux@hotmail.es" class="text-primary hover:underline">pablinux@hotmail.es</a>
</span>
</div>
<div class="flex items-center gap-3">
<span class="material-symbols-outlined text-primary text-[18px]">business</span>
<span class="text-sm text-[#9dabb9]">Empresa:
<a href="mailto:admin@telcotronics.com" class="text-primary hover:underline">admin@telcotronics.com</a>
</span>
</div>
<div class="flex items-center gap-3">
<span class="material-symbols-outlined text-primary text-[18px]">location_on</span>
<span class="text-sm text-[#9dabb9]">Ecuador</span>
</div>
</div>
</section>
</div>
<!-- Footer nav -->
<div class="mt-10 pt-6 border-t border-[#283039] flex items-center justify-between text-sm text-[#9dabb9]">
<span>&copy; 2026 Xsystem / Pablinux. Todos los derechos reservados.</span>
<a href="/privacy" class="text-primary hover:underline flex items-center gap-1">
<span class="material-symbols-outlined text-[16px]">shield</span>
Política de Privacidad
</a>
</div>
</main>
</body>
</html>