AnswerQuestion.html 460 B

1234567891011121314151617181920
  1. <!DOCTYPE html>
  2. <html lang="en" xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <meta charset="utf-8" />
  5. <title>Answer Question</title>
  6. </head>
  7. <body>
  8. <h2>Question: {{ question }}</h2>
  9. <form method="post">
  10. <div>
  11. <label for="answer">Answer</label>
  12. <input name="answer" type="text" />
  13. </div>
  14. <div>
  15. <button type="submit">Submit answer</button>
  16. </div>
  17. </form>
  18. </body>
  19. </html>