1234567891011121314151617181920 |
- <!DOCTYPE html>
- <html lang="en" xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <meta charset="utf-8" />
- <title>Answer Question</title>
- </head>
- <body>
- <h2>Question: {{ question }}</h2>
- <form method="post">
- <div>
- <label for="answer">Answer</label>
- <input name="answer" type="text" />
- </div>
- <div>
- <button type="submit">Submit answer</button>
- </div>
- </form>
- </body>
- </html>
|