liusheng
昨天 e4e220916dd2a4aa649a9b0162e5b5ed0dc9d7e5
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>
    <title>题目转换和二维码生成</title>
</head>
<body>
<h1>题目</h1>
<form id="quiz-form">
    <h2>单选题</h2>
    <#list singleChoiceOptions as option>
        <input type="radio" name="question1" value="${option}"> ${option}<br>
    </#list>
 
    <h2>多选题</h2>
    <#list multipleChoiceOptions as option>
        <input type="checkbox" name="question2" value="${option}"> ${option}<br>
    </#list>
 
    <input type="submit" value="提交">
</form>
</body>
</html>