-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfale_conosco.html
107 lines (90 loc) · 2.21 KB
/
fale_conosco.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
<?php
require 'inicio.php';
?>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Fale Conosco</title>
<style type="text/css">
fieldset{margin: 90px 250px 250px 650px; width:350px;}
<!
.style1 {
color: #FF0000;
font-size: x-small;
}
.style3 {color: #0000FF; font-size: x-small; }
</style>
<script type="text/javascript">
function validaCampo()
{
if(document.cadastro.nome.value=="")
{
alert("O Campo nome é obrigatório!");
return false;
}
else
if(document.cadastro.email.value=="")
{
alert("O Campo email é obrigatório!");
return false;
}
else
if(document.cadastro.assunto.value=="")
{
alert("O campo ASSUNTO é necessário");
return false;
}
else
if(document.cadastro.areado.value=="")
{
alert("É necessário adicionar uma descrição na area de texto!");
return false;
}
else
return true;
}
</script>
</head>
<body>
<form id="cadastro" name="cadastro" method="post" action="inserir.php" onsubmit="return validaCampo(); return false;">
<h1>Contato - Grupo 2</h1>
<fieldset>
<legend>Dados a Preencher</legend>
<table width="625" border="0">
<tr>
<td width="69">Nome:</td>
<td width="546"><input name="nome" type="text" id="nome" size="40" maxlength="60" />
<span class="style1">*</span></td>
</tr>
<tr>
<td>Email:</td>
<td><input name="email" type="text" id="email" size="20" maxlength="50" placeholder="example@example.com.br" />
<span class="style1">*</span></td>
</tr>
<tr>
<td>Assunto:</td>
<td><select name="assunto">
<option value="">Selecione</option>
<option value="">Elogio</option>
<option value="">Sugestão</option>
<option value="">Informação</option>
<option value="">Reclamação</option>
</td></select>
</tr>
<tr>
<td colspan="2">
<textarea name="areado" rows="4" cols="50">
</textarea></td>
</tr>
<tr>
<td colspan="2"><p>
<input name="cadastrar" type="submit" id="sent" value="Enviar" />
<input name="limpar" type="reset" id="limpar" value="Limpar" />
<span class="style1">* Campos com * são obrigatórios! </span></p>
<p> </p></td>
</tr>
</table>
</fieldset>
</form>
</body>
</html>