-
Notifications
You must be signed in to change notification settings - Fork 0
/
menu_administrador.html
116 lines (112 loc) · 6.3 KB
/
menu_administrador.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
107
108
109
110
111
112
113
114
115
116
<!DOCTYPE html>
<html>
<head>
<title>Alura Geek | Menu Administrador</title>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!--fonts-->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Raleway:wght@400;500;600;700&display=swap" rel="stylesheet">
<!--Styles-->
<link rel="stylesheet" href="./css/reset.css">
<link rel="stylesheet" href="./css/normalize.css">
<link rel="stylesheet" href="./css/base.css">
<link rel="stylesheet" href="css/cabecalho/cabecalho.css">
<link rel="stylesheet" href="css/cabecalho/cabecalho__pesquisa.css">
<link rel="stylesheet" href="./css/cabecalho/cabecalho__botaoLogin.css">
<link rel="stylesheet" href="./css/cabecalho/cabecalho__busca.css">
<link rel="stylesheet" href="./css/cabecalho/cabecalho__logo.css">
<link rel="stylesheet" href="./css/cabecalho/cabecalho__campo.css">
<link rel="stylesheet" href="./css/cabecalho/cabecalho__botaoLogin--botao.css">
<link rel="stylesheet" href="./css/footer/footer.css">
<link rel="stylesheet" href="./css/footer/footer__menu.css">
<link rel="stylesheet" href="./css/footer/footer__menu--logo.css">
<link rel="stylesheet" href="./css/footer/footer__menu--lista.css">
<link rel="stylesheet" href="./css/footer/footer__menu--lista--iten.css">
<link rel="stylesheet" href="./css/footer/footer__faleConosco.css">
<link rel="stylesheet" href="./css/footer/footer__faleConosco--title.css">
<link rel="stylesheet" href="./css/footer/footer__faleConosco--form.css">
<link rel="stylesheet" href="./css/rodape.css">
<link rel="stylesheet" href="./css/login/botao__admin.css">
<link rel="stylesheet" href="./css/novoProduto/novoProduto.css">
<link rel="stylesheet" href="./css/novoProduto/novoProduto__title.css">
<link rel="stylesheet" href="./css/novoProduto/novoProduto__adicionarImagem.css">
<link rel="stylesheet" href="./css/novoProduto/novoProduto__adicionarImagem--texto.css">
<link rel="stylesheet" href="./css/novoProduto/novoProduto__form.css">
<link rel="stylesheet" href="./css/novoProduto/novoProduto__form--label.css">
<link rel="stylesheet" href="./css/novoProduto/novoProduto__form--input.css">
<link rel="stylesheet" href="./css/novoProduto/novoProduto__form--submit.css">
<link rel="stylesheet" href="./css/novoProduto/novoProdutoSuperior.css">
</head>
<body>
<header class="cabecalho container">
<div class="cabecalho__logo">
</div>
<div class="cabecalho__botaoLogin">
<a href="login.html"><button class="cabecalho__botaoLogin--botao botao__login">Login</button></a>
</div>
<div class="cabecalho__pesquisa">
<input type="text" class="cabecalho__campo">
<div class="cabecalho__busca">
</div>
</div>
</header>
<section class="novoProduto container">
<div class="novoProdutoSuperior">
<div class="novoProdutoSuperiorLeft">
<h1 class="novoProduto__title">Adicionar Novo Produto</h1>
<div class="novoProduto__adicionarImagem">
<img src="./assets/img/vector_adicionarImagem.svg">
<span class="novoProduto__adicionarImagem--texto">Adicionar uma imagem para o produto</span>
</div>
</div>
<div class="novoProdutoSuperiorRight">
<span>Ou</span>
<input class="buscarImagem" type="file" id="imagem-produto">
</div>
</div>
<form class="novoProduto__form">
<label for="nome_produto" class="novoProduto__form--label">Nome do produto</label>
<input type="text" name="nome_produto" class="novoProduto__form--input"id="nome-produto">
<label for="preco_produto" class="novoProduto__form--label">Preço do produto</label>
<input type="text" name="preco_produto" class="novoProduto__form--input"id="preco-produto">
<label for="categoria" class="novoProduto__form--label">Caregoria do produto</label>
<input type="text" name="categoria" required class="novoProduto__form--input"id="categoria-produto">
<label for="descricao_produto" class="novoProduto__form--label">Descrição do produto</label>
<textarea name="descricao_produto" class="novoProduto__form--input"id="descricao-produto"></textarea>
<input type="submit" name="submit" value="Adicionar produto" class="novoProduto__form--submit">
</form>
</section>
<section class="footer">
<div class="footer__menu">
<img class="footer__menu--logo" src="./assets/img/logo2.svg"></img>
<ul class="footer__menu--lista">
<li class="footer__menu--lista--iten">Quem somos nós</li>
<li class="footer__menu--lista--iten">Política de privacidade</li>
<li class="footer__menu--lista--iten">Programa fidelidade</li>
<li class="footer__menu--lista--iten">Nossas lojas</li>
<li class="footer__menu--lista--iten">Quero ser franqueado</li>
<li class="footer__menu--lista--iten">Anuncie aqui</li>
</ul>
</div>
<div class="footer__faleConosco">
<h2 class="footer__faleConosco--title">Fale Conosco</h2>
<form class="footer__faleConosco--form" action="mailto:swcprog@gmail.com" method="post">
<label for="nome" id="label-nome">Nome</label>
<input type="text" id="nome">
<label for="mensagem" id="label-mensagem">Mensagem</label>
<textarea id="mensagem" rows="4" ></textarea>
<input type="submit" id="enviar-mensagem" value="Enviar Mensagem">
</form>
</div>
</section>
<footer class="rodape">
<span><a id="desenvolvedor" href="https://github.com/swcprog" target="_blank">Desenvolvido por Samuel Wesley 2022</a></span>
</footer>
<script src="./scripts/menu_administrador.js"></script>
<script src="scripts/form.js"></script>
<script src="scripts/criarProduto.js"></script>
</body>
</html>