| 123456789101112131415161718192021222324252627282930313233343536373839 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="UTF-8">
- <title>PrUn buy</title>
- <link rel="stylesheet" type="text/css" href="style.css">
- <link rel="icon" href="https://www.raylu.net/hammer-man.svg" />
- <meta name="viewport" content="width=device-width, initial-scale=1">
- <meta name="theme-color" content="#222">
- </head>
- <body>
- <a href="/">← back</a>
- <main>
- <form>
- <label>FIO username: <input type="text" id="username"></label>
- <label>FIO API key: <input type="text" size="30" id="api-key"></label>
- <label>supply for <input type="number" size="2" value="7" id="days"> days</label>
- <label>CX <input type="text" id="cx" value="IC1" size="3" disabled></label>
- <input type="button" value="fetch" id="fetch">
- </form>
- <table class="buy">
- <thead>
- <tr>
- <th>mat</th>
- <th data-tooltip="needed to supply all planets">want</th>
- <th>bids</th>
- <th data-tooltip="in warehouse">have</th>
- <th data-tooltip="want - bids - have">buy</th>
- <th data-tooltip="ask - bid">spread</th>
- <th data-tooltip="buy × spread">savings</th>
- </tr>
- </thead>
- <tbody></tbody>
- </table>
- </main>
- <div id="popover" popover="hint"></div>
- <script src="buy.js"></script>
- </body>
- </html>
|