-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadicionar.html
78 lines (78 loc) · 5.12 KB
/
adicionar.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
<!DOCTYPE html>
<html lang=" pt-br">
<head>
<meta charset="UFT-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<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@200;300;400;500;700;900&display=swap" rel="stylesheet">
<link href="./css/reset.css" rel="stylesheet" type="text/css">
<link href="./css/normalize.css" rel="stylesheet" type="text/css">
<link href="./css/base.css" rel="stylesheet" type="text/css">
<link href="./css/cabecalho.css" rel="stylesheet" type="text/css">
<link href="./css/adicionar.css" rel = "stylesheet" typw="text/css">
<link href="./css/informativo.css" rel="stylesheet" type="text/css">
<link href="./css/rodape.css" rel="stylesheet" type="text/css">
<link href="./css/validadores.css" rel="stylesheet" type="text/css">
</head>
<body>
<header>
<section class="cabecalho container">
<nav class="cabecalho__nav">
<a class="nav__logo" href="index.html"><img src="./imagens/logo.svg" alt="Logo Alura" class="logo__img"></a>
<button class="nav__btn_login"><a class="btn__login_link" href="#">Pessoa Logada</a></button>
<div class="nav__pesquisa">
<input type="text" class="pesquisa__input" data-pesquisa placeholder="Digite para pesquisar...">
<img src="./imagens/lupa.svg" alt="lupa de pesquisa" class="pesquisa__lupa" data-pesquisar>
</div>
</nav>
</section>
</header>
<main>
<form action="" class="adicionar container" data-form>
<h2 class="adicionar__titulo">Adicionar novo produto</h2>
<input data-tipo="campo" type="text" class="adicionar__input" placeholder="URL da imagem" required data-url>
<span class="form__erro" data-tipo="msgErro"></span>
<input data-tipo="campo" type="text" class="adicionar__input" placeholder="Categoria" data-categoria>
<span class="form__erro" data-tipo="msgErro"></span>
<input data-tipo="campo" type="text" class="adicionar__input" placeholder="Nome do produto" maxlength="20" required data-nome>
<span class="form__erro" data-tipo="msgErro"></span>
<input data-tipo="campo" data-conteudo="preco" type="text" class="adicionar__input" placeholder="Preço do produto" required data-preco>
<span class="form__erro" data-tipo="msgErro" ></span>
<textarea data-tipo="campo" name="" id="" cols="30" rows="8" class="adicionar__texto" placeholder="Descrição do produto" maxlength="150" data-descricao></textarea>
<span class="form__erro" data-tipo="msgErro"></span>
<button class="adicionar__btn">Adicionar produto</button>
</form>
<section class="informativo container">
<div class="informativo__informacoes">
<img src="./imagens/logo.svg" alt="" class="informacoes__titulo">
<div class="informacoes__links">
<a href="" class="informacoes__links-item">Quem somos nós</a>
<a href="" class="informacoes__links-item">Política de privacidade</a>
<a href="" class="informacoes__links-item">Programaa fidelidade</a>
<a href="" class="informacoes__links-item">Nossas lojas</a>
<a href="" class="informacoes__links-item">Quero ser franqueado</a>
<a href="" class="informacoes__links-item">Anuncie aqui</a>
</div>
</div>
<div class="informativo__contato">
<h2 class="contato__titulo">Fale conosco</h2>
<form action="" class="contato__form">
<input data-tipo="campo" type="text" class="form__nome" placeholder="Nome" maxlength="40" required>
<span class="form__erro" data-tipo="msgErro"></span>
<textarea data-tipo="campo" cols="30" rows="5" class="form__texto" placeholder="Escreva sua mensagem" maxlength="120" required data-tipo="texto"></textarea>
<span class="form__erro" data-tipo="msgErro"></span>
<button class="form__btn">Enviar mensagem</button>
</form>
</div>
</section>
</main>
<footer class="rodape container">
<p class="copyright"> © Copyright Allan Machado Sobral - 2022</p>
</footer>
<script src="./js/app.js" type="module"></script>
<script src="./controler/controler-criaProdutos.js" type="module"></script>
<script src="https://github.com/codermarcos/simple-mask-money/releases/download/v3.0.0/simple-mask-money.js"></script>
<script src="./controler/controler-pesquisa.js" type="module"></script>
</body>
</html>