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">
|
2024-02-01 22:55:42 +01:00
|
|
|
<!-- <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>
|
|
|
|
</div>
|
2024-01-13 23:13:11 +01:00
|
|
|
|
2024-02-01 22:55:42 +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>
|
|
|
|
|
2024-02-02 12:25:53 +01:00
|
|
|
<!-- 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>
|
2024-02-02 12:25:53 +01:00
|
|
|
|