-
Notifications
You must be signed in to change notification settings - Fork 0
/
search.html
39 lines (34 loc) · 1.12 KB
/
search.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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Busca de Produtos</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="container-box">
<a href="index.html" title="register a new product">
<span>📝</span>
</a>
<header>
<h1 class="title">Product Search</h1>
</header>
<main>
<form class="register-box">
<input id="search" type="text" name="search" autocomplete="off"
onfocus="this.classList.add('focused'); this.placeholder = 'Enter the product ID or name'"
onblur="if(!this.value) { this.classList.remove('focused'); } this.placeholder = ''">
<label for="search">Name</label>
</form>
<div class="result">
<table>
<tbody id="result-list">
</tbody>
</table>
</div>
</main>
</div>
<script src="js/search.js"></script>
</body>
</html>