options.html 368 B

123456789101112131415161718
  1. <!doctype html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <link rel="stylesheet" href="../css/options.css">
  6. </head>
  7. <body>
  8. <h1>Settings</h1>
  9. <form>
  10. <label>Backend address</label>
  11. <br/>
  12. <input type="text" id="backend"/>
  13. <br/>
  14. <button type="button" id="saveButton">Save</button>
  15. </form>
  16. <script src="../js/options.js"></script>
  17. </body>
  18. </html>