indexExam.html 712 B

1234567891011121314151617181920212223242526272829
  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. <title>Home</title>
  7. </head>
  8. <body style="background-color: #cccccc;">
  9. <div id="formBody" style="display: flex;justify-content: center;align-items: center;height: 90vh;">
  10. <form method="POST" id="inputForm">
  11. <label for="message">Message</label>
  12. <input id="message" name="message" value="hello!!!" type="text">
  13. <button type="submit" style="width:100px;">Go ...</button>
  14. </form>
  15. </div>
  16. <div id="serverMessageBox" style="text-align: center;">
  17. </div>
  18. </body>
  19. <script src="/static/main.js"></script>
  20. </html>