-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
69 lines (62 loc) · 2.89 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
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Cadastro</title>
<link href="estilo.css" rel="stylesheet" />
</head>
<body>
<div class="menu">
<a class="ativo" href="#">Inicio</a>
<a href="produto.html" >Produtos</a>
<a class="#clientes" href="#">Clientes</a>
</div>
<div class="form">
<form name="frmCliente">
<fieldset>
<legend >Cadastro de Clientes</legend>
<div class="form-group">
<label >Código</label>
<input class="input-control" type="number" size="5" id="codigo"
placeholder=" 000" title="informe um código numérico"
/>
<label class="right-inline">Nome</label>
<input class="input-control" type="text" size="40" id="nome"/>
<label class="right-inline">CEP</label>
<input class="input-control" type="text" size="10" id="cep"
placeholder=" 000000-000" title="Informe o Cep"
/>
</div>
<div class="form-group">
<label >Endereço</label>
<input class="input-control" type="text" size="40" id="endereco"/>
<label class="right-inline" >Bairro</label>
<input class="input-control" type="text" size="20" id="bairro"/>
<label class="right-inline" >Cidade</label>
<input class="input-control" type="text" size="30" id="cidade"/>
</div>
<div class="form-group">
<label>Observações</label>
<textarea class="input-control" id="observacoes"></textarea>
</div>
<div class="form-group">
<label>Limite de Credito</label>
<input class="input-control" type="number" size="10" id="limite"/>
<label class="right-inline" >Limite Utilizado</label>
<input class="input-control" type="number" size="10" id="utilizado"/>
<label class="right-inline" >Saldo</label>
<input class="input-control" type="number" size="10" id="saldo" disabled/>
</div>
<div class="form-group">
<label></label>
<button id="salvar">💾Salvar</button>
<button id="cancelar">❌Cancelar</button>
</div>
</fieldset>
</form>
</div>
<div id="listagem"></div>
<script src="cliente.js"></script>
</body>
</html>