-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcliente.html
47 lines (37 loc) · 1.26 KB
/
cliente.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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Consulta Cep Acesso - Cliente</title>
<link rel="stylesheet" href="./css/cliente.css">
</head>
<header>
<h1><span class="blue"><</span> Grupo 01 <span class="blue">></span> <span></pan></h1>
</header>
<body>
<div class="Container">
<section class="section2">
<div class="formulario">
<div id="titulo">
<label for=""><h2> DIGITE O CEP PARA CONSULTAR: </h2></label>
<p>(Digitar somente os números do cep)</p>
</div>
</div>
</div>
<div class="Input">
<input type="number" id="cep" placeholder="Somente 8 números">
<button onclick="consultarCep()">Consultar</button>
<button onclick="limparDados()">limpar Dados</button>
</div>
</section>
<section class="section3">
<div id="resultado"></div>
</section>
<footer>
<button id="btn1" onclick="sairLogin()">Efetuar LogOff</button>
</footer>
<script src="./js/cliente.js"></script>
</body>
</html>