forked from vgarri/QuizProject
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsignup.html
More file actions
54 lines (45 loc) · 1.85 KB
/
Copy pathsignup.html
File metadata and controls
54 lines (45 loc) · 1.85 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
<!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>R-Nombre del juego</title>
</head>
<body>
<header>
</header>
<nav>
</nav>
<main>
<section class="caja2">
<form id="registrationForm">
<section>
<form id="formdb">
<h1>Registro</h1>
<label for="name">Nombre:</label>
<input type="text" id="name" name="name" required>
<label for="username">Usuario:</label>
<input type="text" id="username" name="username" required>
<label for="age">Edad:</label>
<input type="number" id="age" name="age" required min="1">
<label for="email">Correo Electrónico:</label>
<input type="email" id="email" name="email" required>
<label for="password">Contraseña:</label>
<input type="password" id="password" name="password" required>
<input type="checkbox" id="showPassword"> Mostrar Contraseña
<button type="submit" id="toLogin">Entrar</button>
<button type="button" id="googleLogin">Conectarse con Google</button>
</form>
<!-- <p id="logIn">¿Ya tienes una cuenta? <a href="./login.html" style="color: #FF6F59;">Iniciar sesión</a></p> -->
</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>
<script src="/script.js"></script>
</body>
</footer>
</html>