-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
75 lines (61 loc) · 3.02 KB
/
Copy pathindex.html
File metadata and controls
75 lines (61 loc) · 3.02 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
<!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">
<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=Newsreader:opsz,wght@6..72,400;6..72,600&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./style.css">
<title>Document</title>
</head>
<body>
<header>
<a href="index.html"><img src="./assets/NYT-Bestseller-logo-818x200-800x196.png" alt="NYT BestSellers" srcset=""></a>
<div id="nav">
<button class="log_link" id="openS">Sign in</button>
<button class="log_link" id="openI">Log in</button>
<button class="log_link" id="log_out">Log out</button>
<button class="log_link" id="fav" onclick="showFav()">Favorites</button>
<img src="" alt="" id="pic">
</div>
<form action="" id="sign-form" class="form">
<div class="log">
<input type="email" id="sign-email" placeholder="Email">
<input type="password" id="sign-pass" placeholder="Password">
<input type="submit" id="sign-submit" value="Submit">
<button id="closeS">Cerrar</button>
</div>
</form>
<form action="" id="login-form" class="form">
<div class="log">
<input type="email" id="login-email" placeholder="Email">
<input type="password" id="login-pass" placeholder="Password">
<input type="submit" id="login-submit" value="Submit">
<button id="closeI">Cerrar</button>
</div>
</form>
</header>
<main>
<div id="container_loader">
<span class="loader"></span>
</div>
<section id="dashboard">
</section>
<section>
<button id="btn_back" onclick="backToIndex()"> <- BACK TO INDEX</button>
<div id="list"></div>
</section>
<section id="fav_list_dash">
<h3 id="h3_files">Change your profile pic</h3>
<input type="file" id="files" name="files[]" multiple="">
<div id="fav_list"></div>
</section>
</main>
<footer></footer>
<script src="https://www.gstatic.com/firebasejs/8.10.1/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.10.1/firebase-auth.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.10.1/firebase-firestore.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.7.1/firebase-storage.js"></script>
<script src="./script.js"></script>
</body>
</html>