forked from AlvaroHansOrellana/QuizProject
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
61 lines (38 loc) · 1.63 KB
/
Copy pathindex.html
File metadata and controls
61 lines (38 loc) · 1.63 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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./style.css">
<title>Music Quiz</title>
</head>
<body>
<header>
<h1 class="titulo">MusicQuiz</h1>
</header>
<main>
<div class="imagenTexto">
<img src="./media/logo.png" alt="Imagen de resultado" class="imagen1">
<h2>¿Listo para poner a prueba tus conocimientos musicales?</h2>
</div>
<section class="caja">
<h2>Iniciar Sesión</h2>
<form action="/login" method="POST">
<input type="text" name="username" placeholder="Nombre de usuario">
<input type="password" name="password" placeholder="Contraseña">
<button id="toQuiz">Entrar</button>
</form>
<div class="register-link">
<p><a href="./quiz.html">Juega sin registrarte</a></p>
<p>¿No tienes cuenta? <a href="./signup.html">Regístrate aquí</a></p>
</div>
</section>
</main>
<footer>
<p>© Music Quiz 2024</p>
<script src="https://www.gstatic.com/firebasejs/8.7.1/firebase-app.js"></script>
<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>
</footer>
</body>
</html>