-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmodificarProduto.html
112 lines (101 loc) · 5.61 KB
/
modificarProduto.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
<!DOCTYPE html>
<html lang="en">
<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>AluraGeek | Cadastrar novo Produto</title>
<link rel="stylesheet" href="assets/css/reset.css">
<link rel="stylesheet" href="assets/css/normalize.css">
<link href="https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap" rel="stylesheet">
<link rel="stylesheet" href="assets/css/style.css">
<link rel="stylesheet" href="assets/css/cabecalho/cabecalho.css">
<link rel="stylesheet" href="assets/css/cabecalho/cabecalho__coluna1.css">
<link rel="stylesheet" href="assets/css/cabecalho/cabecalho__container.css">
<link rel="stylesheet" href="assets/css/cabecalho/cabecalho__link.css">
<link rel="stylesheet" href="assets/css/cabecalho/cabecalho__pesquisar.css">
<link rel="stylesheet" href="assets/css/cabecalho/cabecalho__adm.css">
<link rel="stylesheet" href="assets/css/novoProduto/novoProduto.css">
<link rel="stylesheet" href="assets/css/novoProduto/novoProduto__titulo.css">
<link rel="stylesheet" href="assets/css/novoProduto/novoProduto__form.css">
<link rel="stylesheet" href="assets/css/institucional/institucional.css">
<link rel="stylesheet" href="assets/css/institucional/institucional__container.css">
<link rel="stylesheet" href="assets/css/institucional/institucional__coluna1.css">
<link rel="stylesheet" href="assets/css/institucional/institucional__logo.css">
<link rel="stylesheet" href="assets/css/institucional/institucional__nav.css">
<link rel="stylesheet" href="assets/css/institucional/faleConosco.css">
<link rel="stylesheet" href="assets/css/rodape.css">
</head>
<body>
<header class="cabecalho">
<div class="cabecalho_container">
<div class="cabecalho__coluna1">
<a href="index.html" class="cabecalho__link">
<img class="cabecalho__img" src="assets/img/Logo.png" alt="AluraGeek">
</a>
<div class="cabecalho__pesquisar">
<input class="pesquisar__input" type="text" placeholder="Pesquisar" maxlength="50">
<img class="pesquisar_img" src="assets/img/lupa.png" alt="Lupa">
</div>
</div>
<div class="cabecalho__adm">
<a href="#"><button id="botaoADM" class="adm__button">Menu administrador</button></a>
</div>
</div>
</header>
<section class="novoProduto">
<div class="novoProduto__container">
<form class="novoProduto__form" id="atualizarProdutoForm" action="">
<h3 class="novoProduto__titulo">Atualizar produto</h3>
<div class="novoProduto__campo">
<label class="novoProduto__label" for="nomeProduto">Nome do produto</label>
<input id="nomeProduto" class="novoProduto__input" type="text" name="nomeProduto" required>
</div>
<div class="novoProduto__campo">
<label class="novoProduto__label" for="precoProduto">Preço do produto</label>
<input id="precoProduto" class="novoProduto__input" type="number" name="precoProduto" required>
</div>
<div class="novoProduto__campo">
<label class="novoProduto__label" for="urlIMGProduto">URL da imagem</label>
<input id="urlIMGProduto" class="novoProduto__input" type="text" name="urlIMGProduto" required>
</div>
<div class="novoProduto__campo">
<label class="novoProduto__label" for="categoria">Categoria</label>
<input id="categoriaProduto" class="novoProduto__input" type="text" name="categoria" required>
</div>
<textarea id="descricaoProduto" class="novoProduto__textarea" name="" placeholder="Descricao do produto"></textarea>
<button class="novoProduto__botao">Atualizar produto</button>
</form>
</div>
</section>
<section class="institucional">
<div class="institucional__container">
<div class="institucional__coluna1">
<div class="institucional__logo">
<img class="logo__img" src="assets/img/Logo.png" alt="">
</div>
<div class="institucional__nav">
<a class="nav__link" href="#">Quem somos nós</a>
<a class="nav__link" href="#">Política de privacidade</a>
<a class="nav__link" href="#">programa de fidelidade</a>
<a class="nav__link" href="#">Nossas Lojas</a>
<a class="nav__link" href="#">Quero ser franqueado</a>
<a class="nav__link" href="#">Anuncie aqui</a>
</div>
</div>
<div class="faleConosco">
<h4 class="faleConosco__titulo">Fale Conosco</h4>
<form class="faleConosco__form" action="">
<label class="form__nome" for="nome">Nome</label>
<input class="form__input" type="text" name="nome" id="nome">
<textarea class="form__textarea" name="mensagem" id="mensagem" cols="30" rows="10" placeholder="Escreva sua mensagem"></textarea>
<button class="form__botao">Enviar mensagem</button>
</form>
</div>
</section>
<footer class="rodape">
<p class="rodape_decricao">Desenvolvido por <a class="rodape__link" href="https://github.com/Gleendon" target="_blank">Gleendon</a> <br> 2022 </p>
</footer>
<script type="module" src="assets/js/modificarProduto.js"></script>
</body>
</html>