-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaddProduct.html
107 lines (93 loc) · 4.53 KB
/
addProduct.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
<!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">
<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: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 href="./src/images/Logo.svg" rel="icon" />
<link rel="stylesheet" href="./src/styles/reset.css"/>
<link rel="stylesheet" href="./src/styles/header/header.css"/>
<link rel="stylesheet" href="./src/styles/footer/footer.css"/>
<link rel="stylesheet" href="./src/styles/addProduct/addProduct.css"/>
<title>Adicionar produtos - AluraGeek</title>
</head>
<body>
<!-- <header class="header">
<a href="index.html">
<img class="header__img" src="./src/images/Logo.svg" alt="logotipo alurageek">
</a>
<div class="header__search">
<input type="search" />
<svg class="search__icon" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 14"><g><circle cx="5.92" cy="5.92" r="5.42" fill="none" stroke="#464646" stroke-linecap="round" stroke-linejoin="round"></circle><line x1="13.5" y1="13.5" x2="9.75" y2="9.75" fill="none" stroke="#464646" stroke-linecap="round" stroke-linejoin="round"></line></g>
</svg>
</div>
<a class="header__button" href="login.html">Login</a>
</header> -->
<section class="addProduct">
<form class="addProduct__container" method="post">
<h3>Adicionar novo produto</h3>
<div class="addProduct__form">
<label for="image">URL da imagem</label>
<input type="text" id="image"/>
</div>
<div class="addProduct__form">
<label for="category">Categoria</label>
<select name="category" id="category" >
<option></option>
<option value="Star-Wars">Star Wars</option>
<option value="Console">Consoles</option>
<option value="Diversos">Diversos</option>
</select>
<!-- <input type="text" id="category"/> -->
</div>
<div class="addProduct__form">
<label for="name">Nome do produto</label>
<input type="text" id="name"/>
</div>
<div class="addProduct__form">
<label for="price">Preço do produto</label>
<input type="text" id="price"/>
</div>
<div class="addProduct__form">
<label for="description">Descrição do produto</label>
<input type="text" id="description" class=" lastChildInput"/>
</div>
<button id="buttonAddProduct" type="submit">Adicionar produto</button>
</form>
</section>
<!-- <footer>
<div class="footer">
<div class="footer__imgContainer">
<img src="./src/images/Logo.svg" alt="logotipo alurageek">
<div class="footer__about">
<a href="#">Quem somos nós</a>
<a href="#">Politica de privacidade</a>
<a href="#">Programa fidelidade</a>
<a href="#">Nossas lojas</a>
<a href="#">Quero ser franqueado</a>
<a href="#">Anuncie aqui</a>
</div>
</div>
<form class="footer__contact">
<p>Fale conosco</p>
<div class="footer__form">
<label for="name" class="footer__label">Nome</label>
<input id="name" class="footer__input" type="text"/>
</div>
<div class="footer__form">
<label class="footer__label" for="textarea">Escrever mensagem</label>
<textarea id="textarea" ></textarea>
</div>
<button>Enviar mensagem</button>
</form>
</div>
<div class="footer__author">
Desenvolvido por Maicon Nunes 2023
</div>
</footer> -->
<script src="./src/scripts/script.js" type="module"></script>
</body>
</html>