42 lines
1.6 KiB
HTML
42 lines
1.6 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>创建问卷</title>
|
|
<link rel="stylesheet" href="../css/createQuestion.css">
|
|
<script src="../js/createQuestion.js"></script>
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<i class="quesen">?</i>
|
|
<div class="title">问卷管理</div>
|
|
<div class="nav-bar">
|
|
<a href="myQuestion.html">我的问卷</a>
|
|
</div>
|
|
</header>
|
|
<main>
|
|
<div class="box">
|
|
<input class="question-title" type="text" value="请在这里输入问卷的标题">
|
|
<div class="quelist"></div>
|
|
<div class="quetype" style="display: none;">
|
|
<button><img style="width: 16px; height: 16px;" src="../img/radio.svg" alt="">单选题</button>
|
|
<button><img style="width: 16px; height: 16px;" src="../img/checkbox.svg" alt="">多选题</button>
|
|
<button><img style="width: 16px; height: 16px;" src="../img/text.svg" alt="">文本题</button>
|
|
</div>
|
|
<a href="javascript:void(0)" class="but" onclick="toggleQueType()">+ 添加问题</a>
|
|
<hr>
|
|
<div class="ctrl-bar">
|
|
<div class="endtime">
|
|
<span>问卷截止日期</span>
|
|
<input type="date" name="endtime" id="endtime">
|
|
</div>
|
|
<div class="pushbut">
|
|
<button>保存问卷</button>
|
|
<button>发布问卷</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</main>
|
|
</body>
|
|
</html> |