-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
107 lines (83 loc) · 4 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
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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" type="text/css" href="style.css" media="screen">
<title>Cadastro</title>
</head>
<body>
<form>
<div class=" quadrado ">
<center>
<h1 id="titulo"> 💻 Cadastro dev 💻</h1> </center> <br> <br>
<h3 id="titulo"> Complete as informações: </h3>
<br> <br>
<fieldset class="grupo">
<div class="campo">
<label for="nome"><strong> Nome do dev </strong></label>
<input type="text" name="nome" id="nome" required>
</div>
<div class="campo">
<label for="sobrenome"><strong>Sobrenome do dev </strong></label>
<input type="text" name="sobrenome" id="sobrenome" required>
</div>
</fieldset>
<div class="campo">
<label for="email"><strong>Email do dev </strong></label>
<input type="email" name="email" id="email" required>
</div>
<br>
<div class="campo">
<label><strong>Qual aplicação o dev desenvolve?</strong></label>
<label>
<input type="radio" name="devweb" value="frontend" checked>Front-end
</label>
<label>
<input type="radio" name="devweb" value="backend">Back-end
</label>
<label>
<input type="radio" name="devweb" value="fullstack">Fullstack
</label>
</div>
<br>
<div class="campo">
<label for="senioridade"><strong>Senioridade</strong></label>
<select id="senioridade" required>
<option selected disabled value="">Selecione</option>
<option>Júnior</option>
<option>Pleno</option>
<option>Sênior</option>
</select>
</div>
<br>
<fieldset class="grupo">
<div id="check">
<label><strong>Tecnologias que utliza: </strong></label><br><br>
<input type="checkbox" id="tecnologia1" name="tecnologia1" value="HTML">
<label for="tecnologia1"> HTML</label>
<input type="checkbox" id="tecnologia2" name="tecnologia2" value="CSS">
<label for="tecnologia2"> CSS</label>
<input type="checkbox" id="tecnologia3" name="tecnologia3" value="JavaScript">
<label for="tecnologia3"> JavaScript</label>
<input type="checkbox" id="tecnologia4" name="tecnologia4" value="PHP">
<label for="tecnologia4"> PHP</label>
<input type="checkbox" id="tecnologia5" name="tecnologia5" value="C#">
<label for="tecnologia5"> C#</label>
<input type="checkbox" id="tecnologia6" name="tecnologia6" value="Python">
<label for="tecnologia6"> Python</label>
<input type="checkbox" id="tecnologia7" name="tecnologia7" value="Java">
<label for="tecnologia7"> Java</label>
</div>
</fieldset>
<br>
<div class="campo">
<br>
<label for="experiencia"><strong>Conte sobre a experiência do dev: </strong></label>
<textarea rows="6" style="width: 26em" id="experiencia" name="experiencia"></textarea>
</div>
<button class="botao" type="submit" onsubmit=""> <a href="./cadatroenviado.html"> Concluído </a> </button>
</form>
</div>
</body>
</html>