-
Notifications
You must be signed in to change notification settings - Fork 0
/
perfil.html
32 lines (30 loc) · 1.33 KB
/
perfil.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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Perfil del Usuario - TOPGAMES</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="../style.css">
</head>
<body>
<header class="container-fluid">
<h1>Tu Perfil</h1>
<nav class="d-flex justify-content-between align-items-center">
<a href="../index.html" class="btn btn-secondary">Inicio</a>
<a href="perfil.html" class="btn btn-warning">Perfil</a>
<a href="../index.html" class="btn btn-danger">Cerrar Sesión</a>
</nav>
</header>
<main class="container mt-4">
<h2>Bienvenido, [Nombre de Usuario]</h2>
<div class="list-group">
<a href="compras.html" class="list-group-item list-group-item-action">Mis Compras</a>
<a href="carrito.html" class="list-group-item list-group-item-action">Mi Carrito</a>
</div>
</main>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/js/bootstrap.bundle.min.js"></script>
<script src="../script.js"></script>
</body>
</html>