-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
90 lines (81 loc) · 4.49 KB
/
index.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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<!DOCTYPE html>
<html lang="es" data-bs-theme="dark">
<head>
<!-- Metadatos -->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Enlaces a archivos externos -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.1/font/bootstrap-icons.css">
<link rel="stylesheet" href="css/bootstrap.css">
<link rel="stylesheet" href="css/estilos.css">
<script src="js/click-spark-main/click-spark.js"></script>
<!-- Favicons -->
<link rel="shotcut icon" href="img/iconLogoLight.png" id="favicon-light" media="(prefers-color-scheme: light)">
<link rel="shotcut icon" href="img/iconLogoDark.png" id="favicon-dark" media="(prefers-color-scheme: dark)">
<script>
function updateFavicon() {
const faviconLight = document.getElementById('favicon-light');
const faviconDark = document.getElementById('favicon-dark');
if (window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches) {
faviconLight.remove();
document.head.appendChild(faviconDark);
} else {
faviconDark.remove();
document.head.appendChild(faviconLight);
}
}
window.matchMedia('(prefers-color-scheme: dark)').addEventListener('change', updateFavicon);
// Llama a la función para establecer el favicon correcto al cargar la página
updateFavicon();
</script>
<!-- Título de la página -->
<title>Acceso | CMS - Eclipse Tournaments</title>
</head>
<body>
<click-spark style="--click-spark-color: #FFB94A; z-index: 99 !important;"></click-spark>
<div class="d-flex justify-content-center align-items-center py-4 vh-100">
<div class="container">
<div class="row align-items-center">
<div class="col-lg-6 px-lg-4">
<div class="card">
<div class="card-header px-lg-5" style="padding: 2rem 2rem;">
<div class="card-heading text-oro" style="text-transform: uppercase;
letter-spacing: .04em;">Eclipse Tournaments' CMS</div>
</div>
<div class="card-body p-lg-5">
<h3 class="mb-4">¡Hola, bienvenido de nuevo! 👋</h3>
<p class="text-muted text-sm mb-5">Por favor, ingresa tus credenciales para acceder al CMS
de Eclipse Tournaments.</p>
<form id="loginForm" action="dashboard.html">
<div class="form-floating mb-3">
<input class="form-control" id="floatingInput" type="email"
placeholder="nombre@ejemplo.com">
<label for="floatingInput">Correo electrónico</label>
</div>
<div class="form-floating mb-3">
<input class="form-control" id="floatingPassword" type="password"
placeholder="Contraseña">
<label for="floatingPassword">Contraseña</label>
</div>
<button class="btn btn-oro btn-lg" type="submit">Acceder</button>
</form>
</div>
<div class="card-footer px-lg-5 py-lg-4">
<div class="text-sm text-muted">El acceso a nuestra plataforma es exclusivo para
administradores y personas autorizadas.
</div>
</div>
</div>
</div>
<div class="col-lg-6 col-xl-5 ms-xl-auto px-lg-4 text-center text-oro">
<img class="img-fluid mb-4" width="300" src="img/cms.svg" alt="Ilustración CMS Eclipse Tournaments">
<h1 class="mb-4 titulo">Acceso restringido al CMS de Eclipse Tournaments</h1>
<p class="lead text-muted">Nuestra plataforma permite gestionar competiciones, equipos, usuarios,
noticias y patrocinadores de manera centralizada, ofreciendo un control completo sobre el
ecosistema de Eclipse Tournaments.</p>
</div>
</div>
</div>
</div>
</body>
</html>