-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignup.html
61 lines (50 loc) · 1.38 KB
/
signup.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
<!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>ToDo</title>
<!-- ---------------- estilos compartidos de login y signup ---------------- -->
<link rel="stylesheet" href="styles/ingreso.css">
<!-- ---------------------- logica aplicada en register -------------------- -->
<!-- <script src="/scripts/utils.js"></script> -->
<script src="/scripts/signup.js"></script>
</head>
<body>
<div class="left">
<img src="./assets/persona-signup.png" alt="">
</div>
<div class="right">
<form>
<div class="form-header">
<p>To-Do App</p>
</div>
<label>
Nombre:
<input id="inputNombre" type="text">
</label>
<label>
Apellido:
<input id="inputApellido" type="text">
</label>
<label>
Email:
<input id="inputEmail" type="text">
</label>
<label>
Contraseña:
<input id="inputPassword" type="password">
</label>
<label>
Repetir contraseña:
<input id="inputPasswordRepetida" type="password">
</label>
<button>Crear Cuenta</button>
</form>
<div class="ingresarA">
<a href="index.html">¿Ya tiene una cuenta? Ingrese aquí</a>
</div>
</div>
</body>
</html>