-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
54 lines (52 loc) · 2.07 KB
/
index.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
<!DOCTYPE html>
<html lang="es">
<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>Registro</title>
<link rel="shortcut icon" href="./img/perfil-del-usuario.png" type="image/x-icon">
<link rel="stylesheet" href="./CSS/Registro.css">
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap" rel="stylesheet">
</head>
<body>
<header>
</header>
<main>
<form action="" method="post" id="form">
<div class="form">
<h1>Registro</h1>
<div class="grupo">
<input type="text" name="" id="usuario" ><span class="barra" ></span>
<label for="">Usuario</label>
</div>
<div class="grupo">
<input type="text" name="" id="name" ><span class="barra" ></span>
<label for="">Nombre</label>
</div>
<div class="grupo">
<input type="text" name="" id="apellido" ><span class="barra" ></span>
<label for="">Apellido</label>
</div>
<div class="grupo">
<input type="email" name="" id="email" ><span class="barra" ></span>
<label for="">Email</label>
</div>
<div class="grupo">
<input type="password" name="" id="password" ><span class="barra" ></span>
<label for="">Password</label>
</div>
<div class="grupo">
<input type="password" name="" id="confirmpassword" ><span class="barra" ></span>
<label for="">Confirm Password</label>
</div>
<button type="submit">Crear Cuenta</button>
<p class="warnings" id="warnings"></p>
</div>
</form>
<script src="/JS/Registro.js"></script>
</main>
<footer>
</footer>
</body>
</html>