41 lines
1.2 KiB
HTML
Raw Normal View History

2024-01-13 23:13:11 +01:00
<!DOCTYPE html>
2024-01-31 01:06:26 +01:00
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- <link href='https://overpass-30e2.kxcdn.com/overpass.css' rel='stylesheet'> -->
2024-01-31 01:06:26 +01:00
<link rel="stylesheet" href="style.css">
<title>Aliexpress price tracker</title>
</head>
<body>
2024-01-13 23:13:11 +01:00
<!-- Load d3.js -->
<script src="https://d3js.org/d3.v6.js"></script>
2024-01-31 01:06:26 +01:00
<!--banner-->
<div class="banner">
<p>Lorem ipsum dolor sit amet</p>
<input id="additemid" type="text" placeholder="item id" pattern="[0-9]*">
<input id="addattributes" type="text" placeholder="attributes (comma separated)" pattern="[0-9a-zA-Z, ]*">
<button id="addbutton" type="button">Add</button>
2024-02-05 09:30:29 +01:00
<button id="global_toggleshow" type="button">show_hidden</button>
2024-01-31 01:06:26 +01:00
</div>
2024-01-13 23:13:11 +01:00
<!--popup confirmation window-->
<div id="confirmationPopup" class="popup">
<div class="popup-content">
<p>Are you sure?</p>
<button id="yesBtn">Yes</button>
<button id="noBtn">No</button>
</div>
</div>
2024-01-31 01:06:26 +01:00
<!-- div where graphs will take place -->
<div class="content" id="graphs"></div>
<!-- Load scripts-->
<script src="fetch.js"></script>
<script src="rendergraphs.js"></script>
2024-01-31 01:06:26 +01:00
<script src="app.js"></script>