-
Notifications
You must be signed in to change notification settings - Fork 0
/
admin-novo-produto.html
84 lines (84 loc) · 2.34 KB
/
admin-novo-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
<!DOCTYPE html>
<html>
<head>
<script src="script.js" type="text/javascript"></script>
<link rel="stylesheet" type="text/css" href="style.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://fonts.googleapis.com/css2?family=Averia+Serif+Libre:wght@300&display=swap" rel="stylesheet">
<title>Junun</title>
</head>
<body>
<div id="header">
<img src="imgs/logo.jpg" id="logo">
<a href="login.html">
<div id="btn_login">
Sair
<img src="imgs/sair.png" id="img_btn_sair">
</div>
</a>
</div>
<div id="content">
<div id="div_login" style="margin-bottom: 50px;">
<div id="text_compras" style="margin-top: -65px;">
Novo Produto
</div>
<div style="background-color: white; width: 100%; height: 250px">
</div>
<label for='selecao-arquivo' id="input_img">Selecionar imagem</label>
<input type="file" id="selecao-arquivo" name="img" accept="image/*">
<form id="form_cadastro">
<div class="grid2">
Nome<br>
<input type="text" name="nome" class="input_cadastro">
</div>
<div class="grid2">
Descrição<br>
<input type="text" name="nome" class="input_cadastro">
</div>
<div class="grid1" style="margin-right: 10px;">
Preço<br>
<input type="text" name="preco" class="input_cadastro">
</div>
<div class="grid1" style="margin-left: 10px;">
Estoque<br>
<input type="number" name="estoque" class="input_cadastro">
</div>
</form>
<a href="admin-produtos.html">
<div id="btn_submit_login">
Cadastrar
</div>
</a>
</div><br>
<div id="div_perfil">
<img src="imgs/j.png" id="j_perfil">
<div id="div_img_perfil">
Administrador
</div>
<a href="admin-produtos.html">
<div id="btn_perfil">
Produtos
</div>
</a>
<a href="admin-novo-produto.html">
<div id="btn_perfil">
Novo Produto
</div>
</a>
<a href="admin-vendas.html">
<div id="btn_perfil">
Vendas
</div>
</a>
<a href="index.html">
<div id="btn_perfil" style="margin-top: 35px; margin-bottom: 10px;">
Sair
</div>
</a>
</div>
</div>
<div id="footer">
<img src="imgs/j.png" id="j_footer">
</div>
</body>
</html>