-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
88 lines (86 loc) · 3.57 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
<!DOCTYPE html>
<html>
<head>
<title>Invie - locales</title>
<meta charset="utf-8"/>
<link href='https://fonts.googleapis.com/css?family=Montserrat:400,700|Allerta' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="css/invie.css"/>
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no"/>
</head>
<body>
<section id="portada" class="portada background"> <!-- portada -->
<header id="header" class="header contenedor"> <!-- header -->
<nav class="menu" id="menu"> <!-- menu -->
<ul>
<li>
<a id="btnUsuario">Usuario actual</a>
</li>
<li>
<a id="btnRegister" href="" style="display: none">Registrar</a>
</li>
<li>
<a id="btnLogin" href="" style="display: none">Iniciar sesión</a>
</li>
<li>
<a id="btnLogout" href="" style="display: none">Cerrar sesión</a>
</li>
<li>
<a id="btnResetPassword" href="" style="display: none">Restablecer contraseña</a>
</li>
<li>
<a id="btnUpdateEmail" href="" style="display: none">Actualizar email</a>
</li>
<li>
<a id="btnUpdatePassword" href="" style="display: none">Actualizar contraseña</a>
</li>
</ul>
</nav>
</header>
</section>
<section id="guitarras" class="contenedor">
<form action="" onsubmit="agregarLocal()">
<input type="text" id="nombre" placeholder="Nombre" autocomplete="off">
<input type="text" id="direccion" placeholder="Direccion" autocomplete="off">
<input type="file" id="inputImg" placeholder="imagen" accept="image/*">
<button type="submit">Agregar</button>
</form>
<img width="500" src="" id="test">
</section>
<section class="tabla datosPerfil" id="datosPerfil">
<div class="contenedor">
<h1>Tu Perfil</h1>
<label for="perfilNombre">Nombre</label>
<h3 id="perfilNombre"></h3>
<label for="perfilTelefono">Teléfono</label>
<h3 id="perfilTelefono"></h3>
<button id="perfilEditar">Editar</button>
</div>
</section>
<section class="formularioPerfil" onsubmit="editarDatos()" id="formularioPerfil" style="display:none">
<div class="contenedor">
<h2>Edita tu información</h2>
<form action="" name="formPerfil">
<div>
<label for="nombreForm">Nombre:</label>
<input type="text" id="nombreForm" required>
</div>
<div>
<label for="telefonoForm">Teléfono:</label>
<input type="text" id="telefonoForm" required>
</div>
<button type="button" id="cancelForm">cancelar</button>
<button type="submit">Guardar</button>
</form>
</div>
</section>
<section id="localesContent"></section>
<div id="div"></div>
<script src="https://www.gstatic.com/firebasejs/5.4.2/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/5.4.2/firebase-auth.js"></script>
<script src="https://www.gstatic.com/firebasejs/5.4.2/firebase-database.js"></script>
<script src="https://www.gstatic.com/firebasejs/5.4.2/firebase-firestore.js"></script>
<script src="https://www.gstatic.com/firebasejs/5.4.2/firebase-storage.js"></script>
<script src="https://www.gstatic.com/firebasejs/5.4.2/firebase-functions.js"></script>
<script src="js/index.js"></script>
</body>
</html>