-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathprofile.html
More file actions
67 lines (57 loc) · 2.43 KB
/
profile.html
File metadata and controls
67 lines (57 loc) · 2.43 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Mi cuenta</title>
<link rel="stylesheet" href="assets/css/styleProfile.css">
<link rel="stylesheet" href="assets/css/index.css">
<link rel="stylesheet" href="assets/css/footer.css">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0-beta1/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-0evHe/X+R7YkIZDRvuzKMRqM+OrBnVFBL6DOitfPri4tjfHxaWutUpFmBp4vmVor" crossorigin="anonymous">
<script src="https://kit.fontawesome.com/4e06a7962f.js" crossorigin="anonymous"></script>
</head>
<body>
<header>
<a href="index.html"><img src="assets/img/logo.png" alt="Beach-Life" width="110px"></a>
<nav class="navbar">
<a class="otroN fa-solid fa-bullhorn" style="color: red;" href="denuncia.html"> D e n u n c i a s</a>
<a class="otroN" href="#inicio">Ver Playas</a>
<a class="active" href="profile.html">Mi cuenta</a>
<a class="otroN" href="premios.html">Premios</a>
</nav>
</header>
<section class="section-body">
<h1 class="sub-heading-aux">Mis Denuncias</h1>
<section class="content-puntos">
<button>Haz el cambio</button>
<div class="div-puntos">
<p>Puntos <span id="no-puntosUsuario">#</span> </p>
</div>
</section>
<section class="section-table">
<table class="table table-bordered table-sm">
<th>No.</th>
<th>Descripcion</th>
<th>Fecha</th>
<th>Status</th>
</table>
</section>
</section>
<!-- Boton flotante -->
<div class="cont">
<div class="redes">
<a href="#" id="boot"><span class="span-bot"><i class="fa-solid fa-robot" style="cursor: pointer;"></i> Chat Bot</span></a>
<!-- HACER QUE CUANDO SE PRESIONE EL BOTON FLOTANTE, SALGA EL IFRAME -->
<iframe src='https://webchat.botframework.com/embed/playabot-bot?s=Op3UjymF3Z4.9oJlUFN1t5IIgP8wvxalKC4Db24tzJyUu_TDYIkGZl4'></iframe>
</div>
</div>
<footer>
<p>Derechos reservados <br> BeachLife - 2022</p>
</footer>
<!-- <footer>
<p>Derechos reservador <br> Clean My beach - 2022</p>
</footer> -->
</body>
</html>