-
Notifications
You must be signed in to change notification settings - Fork 0
/
sign-up.html
49 lines (44 loc) · 1.71 KB
/
sign-up.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
<!DOCTYPE html>
<html lang="en">
<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">
<link
href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,500;1,100;1,300&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="./styles/global_style.css" />
<link rel="stylesheet" href="./sign-up/sign-up.css">
<link rel="stylesheet" href="./styles/navbarShort.css">
<link rel="icon" type="image/png" sizes="32x32" href="./Img/favicon-32x32.png">
<title>Sign-up</title>
</head>
<body>
<div class='arrow_container'>
<a href="/login.html">
<img src="./Img/arrowLogin.png" alt="">
</a>
</div>
<div class="container__login">
<h1>Sign up</h1>
<form id='form'>
<p class='error_msg' id='username_error'>Esto es un error</p>
<input type="text" placeholder="username" class="field" id='username'>
<p class='error_msg' id='e-mail_error'>Esto es un error</p>
<input type="email" placeholder="e-mail" class="field" id='email'>
<p class='error_msg' id='password_error'>Esto es un error</p>
<input type="password" placeholder="password" class="field" id='password'>
<p class='error_msg' id='confirmPassword_error'>Esto es un error</p>
<input type="password" placeholder="confirmar password" class="field" id='confirmPassword'>
<button type="submit" class="btn" id='submitBtn'>
Sign Up
</button>
</form>
<div class="pass-link">
<p>¿ Estas registrado ? <strong><a href="/login.html"> Ingresá.</a></strong></p>
</div>
</div>
<script src="./sign-up/sign-up.js"></script>
</body>
</html>