-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhome.html
70 lines (61 loc) · 3.08 KB
/
home.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
<!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>Quiz Inicio</title>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./css/styles.css">
<link rel="stylesheet" href="//cdn.jsdelivr.net/chartist.js/latest/chartist.min.css">
<script src="//cdn.jsdelivr.net/chartist.js/latest/chartist.min.js"></script>
</head>
<body>
<div id="divHome1">
<h1>Bienvenido al Quiz</h1>
<button id="comenzar"><a href="./question.html">Comenzar</a></button>
<form id ="form1" action="#" method="POST">
<h3>Formulario de Registro</h3>
<label for="email">Email:</label><br>
<input id="email" name="email" placeholder="Introduce tu email..."><br>
<label for="pass">Password:</label><br>
<input type="password" id="pass" name="pass" placeholder="Introduce password..."><br>
<label for="pass2">Repite password:</label><br>
<input type="password" id="pass2" name="pass2" placeholder="Repite password..."><br><br>
<input type="submit" value="Enviar" id="enviarForm1"><br>
</form>
<form id ="form2" action="#" method="POST">
<h3>Formulario de Login</h3>
<label for="email2">Email:</label><br>
<input type="email" id="email2" name="email2" placeholder="Introduce email..."><br>
<label for="pass3">Password:</label><br>
<input type="password" id="pass3" name="pass3" placeholder="Introduce password..."><br>
<p><a href="#">¿Olvidó su contraseña?</a></p>
<input type="submit" value="Enviar" id="enviarForm2"><br>
</form>
<div id="divGoogle">
<h3>Si lo prefieres, haz login con Google</h3>
<button id="google">Haz login con google</button>
</div>
<h3 id="h3gr1">Aquí aparecen los datos de tus últimas partidas jugadas</h3>
<div class="ct-chart ct-perfect-fourth">
</div>
<br>
<h3 id="h3gr2">Aquí están los jugadores con mayor puntuación hasta ahora(por email)</h3>
<div class="ct-chart1 ct-perfect-fourth">
</div>
<div id="logout">
<h3>Logout</h3>
<button id="salir">Cerrar sesión</button>
</div>
</div>
<!-- The core Firebase JS SDK is always required and must be listed first -->
<script src="https://www.gstatic.com/firebasejs/8.7.1/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.7.1/firebase-firestore.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.7.1/firebase-auth.js"></script>
<script src="./js/home.js"></script>
</body>
</html>