-
Notifications
You must be signed in to change notification settings - Fork 0
/
teste2_formulario.html
73 lines (66 loc) · 2.25 KB
/
teste2_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
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<link rel="stylesheet" type="text/css" href="css/style2.css" />
<script src="funcao.js" type="text/javascript" >
</script>
</head>
<body>
<br/>
<div class="container2">
<br />
<h1>Fale conosco!</h1>
<div class="titulo">Dúvidas, críticas e sugestões. Esse é o lugar!
<br/>
<br/>
<form> <!-- name="form" id="contato" action="#" method="post" onSubmit="return validar();">-->
<fieldset id="formulario">
<!-- <input type="hidden" id="id" name="id" value="" /> -->
<br>
<div class="form-group">
<label for="cnome">Nome:*</label>
<input type="text" name="nome" id="cNome" placeholder="Digite seu nome..." size="30"/><br>
<small id="ajudaNome" class="form-text text-muted">
Nome deve ter entre 2 e 50 caracteres.
</small>
</div>
<br>
<div class="form-group">
<label for="cemail">E-mail:*</label>
<input type="text" name="tEmail" id="cEmail" placeholder="Digite seu e-mail..." value="" size="30"/><br>
<small id="ajudaEmail" class="form-text text-muted">
Exemplo: meunome@provedor.com.br
</small>
</div>
<br>
<div class="form-group-assunto"> </div>
<label for="assunto">Assunto:*</label>
<div class="radio">
<input type="radio" name="tAssunto" id="cDuvidas"/>Dúvidas
<input type="radio" name="tAssunto" id="cCriticas"/>Criticas
<input type="radio" name="tAssunto" id="cSugestoes"/>Sugestões
</div>
<br>
<div class="form-group">
<label for="cMensagem">Mensagem:*</label>
<textarea name="tMensagem" id="cMensagem" rows="6" cols="31" placeholder="Mensagem..."></textarea><br>
<small id="ajudaMensagem" class="form-text text-muted"> <center> A mensagem deve ter entre 50 e 500 caracteres.</center>
</small>
</div>
</fieldset>
<br>
<div>
<input type="checkbox" name="tCheck" id="cCheck" value="on" >
Desejo receber notificação das novidades sobre produtos.
</div>
<br>
<div class="form-group float-center">
<a href="/"><input type="button" class="btn btn-dark" value="Voltar" /></a>
<input type="reset" class="btn btn-dark" value="Limpar" />
<input type="submit" value="Enviar" />
</div>
</form>
</div>
</div>
</body>
</html>