plugin-manager.html 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <!doctype html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <meta http-equiv="Content-Security-Policy" content="default-src 'self'; script-src 'self'; style-src 'self'; connect-src 'none'; img-src 'self' data:">
  7. <title id="page-title"></title>
  8. <link rel="stylesheet" href="plugin-manager.css">
  9. </head>
  10. <body>
  11. <main>
  12. <header>
  13. <div>
  14. <h1 id="title"></h1>
  15. <p id="description"></p>
  16. </div>
  17. <button id="refresh" class="quiet" type="button"></button>
  18. </header>
  19. <section id="recovery" hidden>
  20. <p id="recovery-description"></p>
  21. <p id="startup-error" role="alert"></p>
  22. <button id="retry" type="button"></button>
  23. <button id="disable-all" type="button"></button>
  24. </section>
  25. <form id="install-form">
  26. <label id="package-label" for="package-spec"></label>
  27. <div class="install-row">
  28. <input id="package-spec" name="package-spec" autocomplete="off" placeholder="@scope/plugin@1.2.3" required>
  29. <button id="install" type="submit"></button>
  30. </div>
  31. </form>
  32. <p id="status" role="status" aria-live="polite"></p>
  33. <section aria-labelledby="installed-heading">
  34. <h2 id="installed-heading"></h2>
  35. <ul id="plugins"></ul>
  36. <p id="empty"></p>
  37. </section>
  38. </main>
  39. <script src="plugin-manager.js"></script>
  40. </body>
  41. </html>