-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
63 lines (59 loc) · 2.24 KB
/
Copy pathindex.html
File metadata and controls
63 lines (59 loc) · 2.24 KB
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
<!DOCTYPE html>
<html lang="id">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Pencarian Barang</title>
<!-- Link ke file CSS utama -->
<link rel="stylesheet" href="style.css">
<!-- JsBarcode untuk menampilkan barcode -->
<script src="https://cdn.jsdelivr.net/npm/jsbarcode@3.11.5/dist/JsBarcode.all.min.js"></script>
<!-- Script pencarian -->
<script src="script.js" defer></script>
</head>
<body>
<!-- Bagian utama: gabungan pencarian dan form saran -->
<div id="mainSection" class="container">
<h1>Pencarian Barang</h1>
<input type="text" id="search" placeholder="Masukkan PLU atau Barcode">
<div id="searchHistory"></div>
<button onclick="cariBarang()">Cari</button>
<!-- Form saran yang sudah digabung -->
<div id="addFormContainer">
<h2>Tambahkan Saran Barang</h2>
<form action="https://formsubmit.co/yunggialyana123@gmail.com" method="POST">
<input type="text" name="plu" placeholder="PLU" required>
<input type="text" name="nama" placeholder="Nama Barang" required>
<input type="text" name="barcode" placeholder="Barcode (Opsional)">
<button type="submit">Kirim Saran</button>
</form>
</div>
</div>
<!-- Pop-up hasil pencarian (tersembunyi secara default) -->
<div id="resultPopup" class="popup">
<div class="popup-content">
<span class="close-btn" onclick="closePopup()">×</span>
<h2>Detail Barang</h2>
<div id="resultContent">
<!-- Hasil pencarian akan ditampilkan di sini -->
</div>
<svg id="barcode"></svg>
<button id="printBarcode" onclick="cetakBarcode()">Cetak Barcode</button>
</div>
</div>
<!-- Overlay gelap untuk latar belakang popup -->
<div id="overlay" onclick="closePopup()"></div>
<!-- Tombol Trakteer di kanan bawah -->
<div class="trakteer-container">
<div class="bubble-wrapper">
<a href="https://trakteer.id/yunggi_alyana/tip" class="trakteer-button" target="_blank">
<img src="img/trakteer-icon.png" alt="Trakteer Logo">
Trakteer
</a>
<div class="trakteer-bubble">
Web-nya berguna? Trakteer admin buat ngopi dong ☕
</div>
</div>
</div>
</body>
</html>