prompt.html 514 B

123456789101112131415161718
  1. <html>
  2. <head>
  3. <link href="prompt.css" rel="stylesheet" />
  4. </head>
  5. <body>
  6. <div id="container">
  7. <form id="form">
  8. <div id="label">...</div>
  9. <div id="data-container"></div>
  10. <div id="buttons">
  11. <button id="cancel">Cancel</button>
  12. <button type="submit" id="ok">OK</button>
  13. </div>
  14. </form>
  15. </div>
  16. <script src="prompt.js"></script>
  17. </body>
  18. </html>