junk.html 1.0 KB

1234567891011121314151617181920212223242526272829303132
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>PrUn junk finder</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="junk">
  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>CX: <select id="cx">
  18. <option value="ANT">AI1/ANT</option>
  19. <option value="BEN">CI1/BEN</option>
  20. <option value="ARC">CI2/ARC</option>
  21. <option value="HRT" selected>IC1/HRT</option>
  22. <option value="MOR">NC1/MOR</option>
  23. <option value="HUB">NC2/HUB</option>
  24. </select></label>
  25. <input type="button" value="fetch" id="fetch">
  26. </form>
  27. <section id="loader"></section>
  28. <section id="junk"></section>
  29. </main>
  30. <script src="junk.js"></script>
  31. </body>
  32. </html>