buy.html 837 B

1234567891011121314151617181920212223242526
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>PrUn buy</title>
  6. <link rel="stylesheet" type="text/css" href="style.css">
  7. <link rel="icon" href="https://www.raylu.net/hammer-man.svg" />
  8. <meta name="viewport" content="width=device-width, initial-scale=1">
  9. <meta name="theme-color" content="#222">
  10. </head>
  11. <body>
  12. <a href="/">← back</a>
  13. <main class="buy">
  14. <form>
  15. <label>FIO username: <input type="text" id="username"></label>
  16. <label>FIO API key: <input type="password" size="30" id="api-key"></label>
  17. <label>supply for <input type="number" size="2" value="7" id="days"> days</label>
  18. <input type="button" value="fetch" id="fetch">
  19. </form>
  20. <section id="buys"></section>
  21. <section id="loader"></section>
  22. </main>
  23. <div id="popover" popover="hint"></div>
  24. <script src="buy.js"></script>
  25. </body>
  26. </html>