liusheng
2025-04-15 ba69dcfe19d7718449f45b3aba8e9fc75ed93025
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <title>Form</title>
</head>
<body>
<h1>${question}</h1>
<form action="/submit" method="POST">
    <ul>
        <#list options as option>
            <li>
                <label>
                    <input type="checkbox" name="answer" value="${option}" /> ${option}
                </label>
            </li>
        </#list>
    </ul>
    <input type="submit" value="Submit" />
</form>
</body>
</html>