-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
91 lines (82 loc) · 3.35 KB
/
index.html
File metadata and controls
91 lines (82 loc) · 3.35 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
83
84
85
86
87
88
89
90
91
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Web</title>
<link rel="stylesheet" href="css/styles.css">
<link rel="icon" href="img/supertux.png">
<link href='https://unpkg.com/boxicons@2.0.7/css/boxicons.min.css' rel='stylesheet'>
<!-- The core Firebase JS SDK is always required and must be listed first -->
<script src="https://www.gstatic.com/firebasejs/8.2.4/firebase-app.js"></script>
<!-- TODO: Add SDKs for Firebase products that you want to use
https://firebase.google.com/docs/web/setup#available-libraries -->
<script src="https://www.gstatic.com/firebasejs/8.2.4/firebase-analytics.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.2.4/firebase-auth.js"></script>
<script>
// Your web app's Firebase configuration
// For Firebase JS SDK v7.20.0 and later, measurementId is optional
var firebaseConfig = {
apiKey: "AIzaSyB4pDFwnLgTrbOTU-YMCNpuITx__y8ir0A",
authDomain: "fancylanding-a0907.firebaseapp.com",
projectId: "fancylanding-a0907",
storageBucket: "fancylanding-a0907.appspot.com",
messagingSenderId: "616235768999",
appId: "1:616235768999:web:647e1ea2c58feefb39cf82",
measurementId: "G-0FWR5NMMCW"
};
// Initialize Firebase
firebase.initializeApp(firebaseConfig);
firebase.analytics();
</script>
</head>
<body>
<header id="header">
<div class="wrap">
<div id="logo">
<span class="icono"><i class='bx bxl-javascript'></i></span>
<h1>DEVELOPER</h1>
</div>
<nav id="menu">
<ul>
<li><a href="#Inicio">Home</a></li>
<li><a href="#Blog">Blog</a></li>
<li><a href="#Proyectos">Projects</a></li>
<li><a href="#Contacto">Contact</a></li>
</ul>
</nav>
</div>
</header>
<main class="wrap">
<section id="Inicio">
<div id="register">
<h3>Registro de usuarios</h3>
<input id="email" type="email" placeholder="Ingrese email">
<input id="contrasena" type="password" placeholder="Ingrese contraseña">
<button onclick="registrar()">Registrar</button>
</div>
<br>
<div id="session">
<h3>Ingreso de usuarios</h3>
<input id="email2" type="email" placeholder="Ingrese email">
<input id="contrasena2" type="password" placeholder="Ingrese contraseña">
<button onclick="ingresar()">Ingresar</button>
</div>
<!-- <img src="img/javascript.svg" alt=""> -->
</section>
<section id="Blog">
<p>sss</p>
<!-- <img src="img/javascript.svg" alt=""> -->
</section>
<section id="Proyectos">
<!-- <img src="img/javascript.svg" alt=""> -->
</section>
<section id="Contacto">
<!-- <img src="img/javascript.svg" alt=""> -->
</section>
</main>
<script src="js/app.js"></script>
</body>
<footer>
<h3>Hecho con 🧡 por <a href="https://bravedeveloper.com" target="blank">BraveDeveloper</a> para todo el mundo.</h3>
</footer>
</html>