-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcliente-f.php
54 lines (54 loc) · 2.38 KB
/
cliente-f.php
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
<DOCTYPE html>
<html lang="pt-br">
<head>
<title>Cadastrar - Cliente</title>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" media="screen" href="./css/mystyle.css" />
</head>
<body>
<form name="dadosCliente" action="cliente-c.php" method="POST">
<table border="1">
<tbody>
<tr>
<td>Código Cliente:</td>
<td><input type="text" name="idCliente" value="" disabled="true" /></td>
</tr>
<tr>
<td>Nome:</td>
<td><input type="text" name="nomeCliente" value="" onkeyup="this.value = this.value.toUpperCase();"/></td>
</tr>
<tr>
<td>CPF:</td>
<td><input type="text" name="cpfCliente" value="" onkeyup="this.value = this.value.toUpperCase();"/></td>
</tr>
<tr>
<td>Cidade:</td>
<td><input type="text" name="cidadeCliente" value="" onkeyup="this.value = this.value.toUpperCase();"/></td>
</tr>
<tr>
<td>Tipo de Cliente: F=Física/J=Jurídica</td>
<td>
<select name="tipoCliente">
<option name="tipoCliente" value="F">F</option>
<option name="tipoCliente" value="J">J</option>
</select>
</td>
</tr>
<tr>
<td>Situação do Cliente: A=Ativo/I=Inativo</td>
<td>
<select name="situacaoCliente">
<option name="situacaoCliente" value="A">A</option>
<option name="situacaoCliente" value="I">I</option>
</select>
</td>
</tr>
<tr>
<td><input type="submit" name="acao" value="Enviar" onclick="alert('Cadastro efetuado com sucesso.');"/></td>
</tr>
</tbody>
</table>
</form>
<a href="index.html">Voltar ao início</a>
</body>
</html>