-
Notifications
You must be signed in to change notification settings - Fork 0
/
cadastro_produto.html
102 lines (86 loc) · 2.99 KB
/
cadastro_produto.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
<!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" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css" />
<link rel="stylesheet" href="./CSS/poduto.css" />
<link rel="stylesheet" href="./CSS/carrinho.css" />
<link rel="stylesheet" href="./CSS/telas.css">
<link rel="stylesheet" href="./CSS/login.css">
<title>LOGIN</title>
</head>
<body>
<header class="cabecalho">
<nav class="menu">
<ul class="ul-menu">
<a href="login.html">
<li id="image-usuario"><i class="bi bi-file-person"></i></li>
</a>
<li id="image-localizacao">
<i class="bi bi-geo-alt"></i>
<input id="cep" type="text" placeholder="Digite seu CEP">
<p class="nome-localizacao"></p>
<button onclick="consultaEndereco()">OK</button>
</li>
<li class="logo-empresa">
<i class="bi bi-card-image"></i>
</li>
</ul>
</nav>
</header>
<section class="secao-login">
<h1 id="nome-empresa">SAX SUNSHINE</h1>
<img src="" alt="" />
<div class="login-senha">
<label for="" class="login">NOME DO INSTRUMENTO</label>
<input type="text" class="input"/>
<label for="" class="login">DESCRIÇÃO</label>
<input type="text" class="input"/>
<label for="" class="login">MODELO</label>
<input type="text" class="input"/>
<label for="" class="login">PREÇO UNITÁRIO</label>
<input type="text" class="input"/>
<label for="" class="login">CÓDIGO DE BARRAS</label>
<input type="text" class="input"/>
<button class="botao">CADASTRAR PRODUTO</button>
</div>
</section>
<footer id="footer" class="footer">
<ul class="footer-card">
<a href="index.html">
<li id="footer-item">
<i class="bi bi-house-fill"></i>
<p class="footer-name-item">HOME</p>
</li>
</a>
<a href="cadastrar_usuario.html">
<li id="footer-item">
<i class="bi bi-emoji-smile"></i>
<p class="footer-name-item">CADASTRO USUÁRIO</p>
</li>
</a>
<a href="cadastro_produto.html">
<li id="footer-item">
<i class="bi bi-upc-scan"></i>
<p class="footer-name-item">CADASTRO PRODUTO</p>
</li>
</a>
<a href="carrinho.html">
<li id="footer-item">
<i class="bi bi-cart"></i>
<p class="footer-name-item">CARRINHO</p>
</li>
</a>
<a href="produto.html">
<li id="footer-item">
<i class="bi bi-stickies"></i>
<p class="footer-name-item">PRODUTO</p>
</li>
</a>
</ul>
</footer>
<script src="./JS/script-home.js"></script>
</body>
</html>