-
Notifications
You must be signed in to change notification settings - Fork 1
/
1cadastrobia.html
70 lines (46 loc) · 2.1 KB
/
1cadastrobia.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
62
63
64
65
66
67
68
69
70
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description"
content="Direitos e legislações relacionadas à dislexia, incluindo reconhecimento, suporte legal, e proteção contra discriminação.">
<meta name="keywords" content="dislexia, direitos, legislações, reconhecimento, suporte, proteção">
<title>Register with Helplexia</title>
<link rel="stylesheet" href="css/bootstrap.css">
<link rel="stylesheet" href="css/cadastro.css">
</head>
<body>
<div id="cadastro" class="pag_cadastro">
<div class="form">
<h1> Register</h1> <br>
<form>
<label id="Name">Name</label><br>
<input type="text" id="name" placeholder="Enter your name" required>
<br><br>
<label id="Last name">Last name</label><br>
<input type="text" id="Last Name" placeholder="Enter your Last Name" required>
<br><br>
<label id="Email">Email</label><br>
<input type="email" id="Email" placeholder="Enter your Email" required>
<br><br>
<label id="Password">Password</label><br>
<input type="password" id="Password" placeholder="Enter your password" required>
<br><br>
<label> Genre</label>
</form>
<select class="select">
<option value="" disabled selected> SELECT YOUR GENRE</option>
<option value="Female">Female</option>
<option value="Male">Male</option>
<option value="Don't Say">I'd Rather Not Say</option>
</select>
<br> <br>
<div class="enviar">
<a href="index 2.html">
<button>Submit </button>
</a>
</div>
</div>
</div>
</html>