-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
47 lines (43 loc) · 1.79 KB
/
index.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
<!DOCTYPE html>
<html lang="PT-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/style.css">
<link rel="shortcut icon" href="img/iconlogo.png" type="image/x-icon">
<link rel="stylesheet" href="css/dialog.css">
<title>Tem em Casa</title>
</head>
<body>
<main>
<div id="title">
<h1>Tem em <br>Casa <img id="logo" src="img/logo escuro transparente.png" alt="logo tem em casa"> </h1></div>
<div id="enter">
<input type="text" id="campo-entrada" placeholder="Insira os ingredientes" list="ingredientes" autocomplete="on">
<input type="button" id="botao-adicionar" value="Adicionar">
</div>
<datalist id="ingredientes" ></datalist>
<div id="campo-lista">
<ul id="lista-ingredientes"></ul>
</div>
<input type="button" id="botao-requerer" value="Buscar receitas">
<ul id="lista-receitas"></ul>
</main>
<dialog id="hello">
<h2>Bem vindo ao Tem em Casa</h2>
<p>Adicione os ingredientes que você Tem em Casa e clique em "Buscar receitas" para receber sugestões de receitas!</p>
<input type="button" value="OK" id="close-hello">
</dialog>
<dialog id="erro">
<h2>Ops...</h2>
<p>Ainda não temos receitas com essa combinação de ingredientes, mas estamos trabalhando para ampliar nossos serviços!</p>
<input type="button" value="OK" id="close-erro">
</dialog>
<dialog id="sem-ingrediente">
<h2>Ops...</h2>
<p>Insira ao menos um ingrediente para buscar receitas!</p>
<input type="button" value="OK" id="close-sem-ingrediente">
</dialog>
<script src="js/script.js" type="module"></script>
</body>
</html>