-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
56 lines (48 loc) · 2.35 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
55
56
<!DOCTYPE html>
<head>
<title>Ejercicio de Laboratorio de Isana</title>
<!-- Aquí llamamos a la fuente de Google para poder usarla en nuestro doc -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap" rel="stylesheet">
<!-- Aquí llamamos a nuestra hoja de estilo en CSS -->
<link rel="stylesheet" type="text/css" href="style.css" />
</head>
<body>
<center><div class="container">
<form id="formulario" action="">
<h1>Create Account</h1>
<div class="input-control">
<label for="nombre">Nombre</label>
<input id="nombre" name="nombre" type="text">
<img id="erroricon" scr="/error-icon.svg">
<img id="successicon" scr="/success-icon.svg">
<div class="error"></div>
</div>
<div class="input-control">
<label for="email">Email</label>
<input id="email" name="email" type="text">
<img id="emailerroricon" scr="/error-icon.svg">
<img id="emailsuccessicon" scr="/success-icon.svg">
<div class="error"></div>
</div>
<div class="input-control">
<label for="password">Clave</label>
<input id="password"name="password" type="password">
<img id="passerroricon" scr="/images/error-icon.svg">
<img id="passsuccessicon" scr="/images/success-icon.svg">
<div class="error"></div>
</div>
<div class="input-control">
<label for="password2">Confirme su clave</label>
<input id="password2"name="password2" type="password">
<img id="pass2erroricon" scr="/images/error-icon.svg">
<img id="pass2successicon" scr="/images/success-icon.svg">
<div class="error"></div>
</div>
<button id="boton" type="submit">ENVIAR</button>
</form>
</div></center>
<script src="index.js" type="text/javascript"></script>
</body>
</html>