-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathhome.php
More file actions
82 lines (75 loc) · 2.95 KB
/
Copy pathhome.php
File metadata and controls
82 lines (75 loc) · 2.95 KB
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
<?php
session_start();
if(!isset($_SESSION["user_id"]) || $_SESSION["user_id"]==null){
print "<script>alert(\"Acceso invalido!\");window.location='login.php';</script>";
}
?>
<html>
<head>
<title>.: HOME :.</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&display=swap" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="assets/bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="assets/bootstrap-icons/bootstrap-icons.min.css">
<link rel="stylesheet" type="text/css" href="assets/css/style.css">
</head>
<body>
<?php include "php/navbar.php"; ?>
<div class="container mt-5">
<div class="row g-4">
<!-- Welcome Bento Item -->
<div class="col-lg-8">
<div class="bento-card bg-light-gray">
<h2 class="display-5 fw-bold mb-3">Bienvenido, Usuario</h2>
<p class="text-muted lead">Este es tu panel de control personalizado. Aquí podrás gestionar tu cuenta y revisar tu actividad reciente.</p>
<hr class="my-4 opacity-10">
<div class="d-flex gap-3">
<button class="btn btn-bento">Ver mi Perfil</button>
<button class="btn btn-outline-dark rounded-pill px-4">Configuración</button>
</div>
</div>
</div>
<!-- Status Card -->
<div class="col-lg-4">
<div class="bento-card text-center d-flex flex-column justify-content-center">
<div class="mb-3 text-success">
<i class="bi bi-patch-check-fill display-4"></i>
</div>
<h4>Cuenta Verificada</h4>
<p class="text-muted small">Tu identidad ha sido confirmada correctamente.</p>
</div>
</div>
<!-- Activity -->
<div class="col-lg-6">
<div class="bento-card">
<h5 class="mb-4"><i class="bi bi-clock-history me-2 text-primary"></i> Actividad Reciente</h5>
<ul class="list-unstyled mb-0">
<li class="mb-3 pb-3 border-bottom d-flex justify-content-between align-items-center">
<span>Inicio de sesión exitoso</span>
<span class="badge bg-light text-dark rounded-pill">Hoy</span>
</li>
<li class="d-flex justify-content-between align-items-center">
<span>Cambio de contraseña</span>
<span class="badge bg-light text-dark rounded-pill">Ayer</span>
</li>
</ul>
</div>
</div>
<!-- Quick Actions -->
<div class="col-lg-6">
<div class="bento-card">
<h5 class="mb-4"><i class="bi bi-lightning-fill me-2 text-warning"></i> Acciones Rápidas</h5>
<div class="d-grid gap-2">
<a href="php/logout.php" class="btn btn-outline-danger">Cerrar Sesión</a>
</div>
</div>
</div>
</div>
</div>
<footer class="text-center">
© 2026 RLPHP Dashboard - Bento Edition.
</footer>
<script src="assets/bootstrap/js/bootstrap.bundle.min.js"></script>
</body>
</html>