-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (37 loc) · 1.23 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
<!DOCTYPE html>
<html>
<head>
<title>Login</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="error"></div>
<main id="main-event">
<header id="form-header">Create Account</header>
<form id="login-info"><br>
<div>Nombre</div>
<input type="text" id="nombre" name="nombre" class="login-square" required>
<div class="error-area">
<div class="error-text">Rellene este campo</div><br>
</div>
<div>Email</div>
<input type="email" id="email" name="email" class="login-square" required>
<div class="error-area">
<div class="error-text">Rellene este campo</div><br>
</div>
<div>Clave</div>
<input type="password" id="password" name="password" class="login-square" minlength="4" maxlength="8" required>
<div class="error-area">
<div class="error-text">Rellene este campo</div><br>
</div>
<div>Confirme su clave</div>
<input type="password" id="confirm" name="confirmation" class="login-square" maxlength="8" required>
<div class="error-area">
<div class="error-text">Rellene este campo</div><br>
</div>
<button type="submit" id="login-submit">"ENVIAR"</button>
</form>
<script src="indext.js"></script>
</main>
</body>
</html>