-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathform.html
More file actions
51 lines (41 loc) · 1.72 KB
/
form.html
File metadata and controls
51 lines (41 loc) · 1.72 KB
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
<html>
<head>
<title>Form</title>
</head>
<body background="assets/bgsite.jpg"></body>
<h1>Formulário de Cadastro</h1>
<form action="process_form.php" method="post">
<label for="name">Nome:</label><br>
<input type="text" id="name" name="name"><br><br>
<label for="email">Email:</label><br>
<input type="email" id="email" name="email"><br><br>
<label for="password">Senha:</label><br>
<input type="password" id="password" name="password"><br><br>
<p>Selecione seu gênero:</p>
<input type="radio" id="masculino" name="genero" value="masculino">
<label for="masculino">Masculino</label><br>
<input type="radio" id="feminino" name="genero" value="feminino">
<label for="feminino">Feminino</label><br>
<input type="radio" id="outro" name="genero" value="outro">
<label for="outro">Outro</label><br>
<p>quais classes você mais joga?</p>
<input type="checkbox" id="pyro" name="jogos" value="pyro">
<label for="pyro">Pyro</label><br>
<input type="checkbox" id="medic" name="jogos" value="medic">
<label for="medic">Medic</label><br>
<input type="checkbox" id="Heavy" name="jogos" value="Heavy">
<label for="Heavy">Heavy</label><br>
<input type="checkbox" id="spy" name="jogos" value="spy">
<label for="spy">Spy</label><br>
<input type="checkbox" id="sniper" name="jogos" value="sniper">
<label for="sniper">Sniper</label><br>
<input type="submit" value="Enviar">
</form>
<div>
<a href="index.html">Home</a>
<a href="trailer.html">Trailer </a>
<a href="voice-actors.html">Voice-actors</a>
<a href="category.html">Category</a>
<a href="form.html">Form</a>
</div>
</html>