-
Notifications
You must be signed in to change notification settings - Fork 0
/
editar_produto.html
72 lines (68 loc) · 3.29 KB
/
editar_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
<!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>Alura Geek</title>
<link rel="icon" type="image/x-icon" href="assets/favicon/favicon.ico">
<link rel="stylesheet" href="assets/css/reset.css">
<link rel="stylesheet" href="assets/css/base.css">
<link rel="stylesheet" href="assets/css/editar_produto.css">
<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@300;400;500;600;700&display=swap" rel="stylesheet">
</head>
<body>
<header class="header">
<div class="header__container">
<a href="index.html"><img src="assets/img/Logo.svg" alt="Logotipo da AluraGeek" class="header__logo"></a>
<div class="search">
<input type="text" placeholder="O que deseja encontrar?" class="search__input">
<i class="search__icon" aria-label="Ícone de pesquisa"></i>
</div>
<button type="button" class="buttonStroke header__login" onclick="window.location.href='login.html'">Menu Administrador</button>
</div>
</header>
<main>
<section class="productSection">
<div class="h1__container">
<h2 class="h1__title ">Todos produtos</h2>
<button class="buttonFill" onclick="window.location.href='adicionar_produto.html'">Adicionar produto</button>
</div>
<div class="itemBox__container" data-container></div>
</section>
</main>
<footer class="footer">
<section class="footer__container">
<div class="footer__logo"><img src="assets/img/Logo.svg" alt="Logotipo da AluraGeek"></div>
<ul class="footer__pages">
<li><a href="#">Quem somos nós</a></li>
<li><a href="#">Política de Privacidade</a></li>
<li><a href="#">Programa fidelidade</a></li>
<li><a href="#">Nossas lojas</a></li>
<li><a href="#">Quero ser franqueado</a></li>
<li><a href="#">Anuncie aqui</a></li>
</ul>
<form action="#" class="footer__form">
<h3 class="footerForm__title">Fale conosco</h3>
<div class="footerForm__name">
<input type="text" name="name" id="name" class="footerForm__nameInput" placeholder="Digite seu nome">
<label for="name" class="footerForm__nameLabel">Nome</label>
</div>
<div>
<textarea name="message" id="message" class="footerForm__message" placeholder="Escreva sua mensagem"></textarea>
</div>
<div>
<button type="submit" class="buttonFill">Enviar mensagem</button>
</div>
</form>
</section>
<section class="footer__sign">
<p>Desenvolvido por <a href="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/araujoleite" class="linkDev">Alan Leite</a></p>
<p>2022</p>
</section>
</footer>
<script type="module" src="/controller/editar-controller.js"></script>
</body>
</html>