-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathformulario.html
114 lines (100 loc) · 2.07 KB
/
formulario.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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
<!DOCTYPE HTML>
<html>
<head>
<title>Increva-se</title>
<style>
body{
background-image:url("star.jpg");
}
*{
text-align: center;
}
input[type=text] {
width: 20%;
padding: 12px 5px;
margin: 10px 5px;
box-sizing: border-box;
border: none;
background-color: #FFF8DC;
border: 3px solid #000000;
color: black;
}
input[type=email]{
width: 40%;
padding: 12px 5px;
margin: 10px 5px;
box-sizing: border-box;
border: none;
background-color: #FFF8DC;
border: 3px solid #000000;
}
input[type=date]{
width:21%;
padding: 12px 5px;
margin: 10px 5px;
box-sizing: border-box;
background-color: #FFF8DC;
border: 3px solid #000000;
color:black;
}
input[type=senha]{
width: 40%;
padding: 12px 20px;
margin: 8px 0px;
box-sizing: border-box;
background-color: #FFF8DC;
border: 3px solid #000000;
}
input[name=CONFIRMAR]{
width: 22%;
}
input[type=submit]{
width: 10%;
padding: 5px 10px;
margin:8px 0px;
border:3px solid #000000;
position: absolute;
top:450px;
right: 700px;
background-color:#000000;
color:white;
}
input[type=reset]{
width: 10%;
padding: 5px 10px;
margin:8px 0px;
border:3px solid #000000;
position: absolute;
top:450px;
right: 500px;
background-color:#000000;
color:white;
}
h1,h3,b,label{
color:white;
}
}
</style>
</head>
<body>
<h1>CRIAR UMA NOVA CONTA</h1>
<h3>È RAPIDO E FACIL !</h3>
<form>
<input type="text" name="NOME" placeholder="NOME"/>
<input type="text" name="Sobrenome" placeholder="SOBRENOME">
</br>
<input type="email" name="Email" placeholder="EMAIL OU TELEFONE"/>
</br>
<input type="Senha" name="senha" placeholder="NOVA SENHA">
</br>
<label>DATA DE NASCIMENTO:</label>
<input type="date" name="Data">
</br>
<input type="radio" name="Masculino" /><b>Masculino</b>
<input type="radio" name="Femenino" /><b>Femenino</b>
<input type="radio" name="Personalisado"/><b>Personalisado</b>
<input type="submit" value=CADASTRA-SE>
<input type="reset" value="CANCELAR">
</form>
</body>
</html>