quizzer
Version:
Quizzer is a webserver for collaborative writing lab support. Based on a _fail early, fail often? approach to written language, the tool is particularly suited to second-language learners. The workflow (essay - error - quiz - exam) treats mistakes as an o
35 lines (34 loc) • 1.51 kB
HTML
<html>
<head>
<title>Quizzer Admin - groups</title>
<meta charset="UTF-8">
<script type="text/javascript" src="js/marked.js"></script>
<script type="text/javascript" src="js/local.js"></script>
<script type="text/javascript" src="js/admin-groups.js"></script>
<link rel="stylesheet" type="text/css" href="css/simple-grid.css"/>
<link rel="stylesheet" type="text/css" href="css/local.css"/>
<link rel="stylesheet" type="text/css" href="css/admin-groups.css"/>
</head>
<body onLoad="buildGroupList();i18n();">
<div class="grid">
<div class="col-1-1">
<h1 class="i18n" name="content-quizzer-admin-groups">Quizzer Admin</h1>
<div>
<input class="button i18n" name="value-back" type="button" value="Back" onclick="window.location = fixPath('/?admin=' + getParameterByName('admin') + '&page=top')"/>
</div>
<div class="button-bold">
<input class="button i18n" name="value-add-group" id="add-group-button" type="button" value="Add Group" onclick="addGroup()"/>
<input class="button i18n" name="value-save-group" id="save-group-button" type="button" value="Save Group" onclick="saveGroup()" style="display:none;"/>
<span id="group-boxes" style="display:none;">
Name:
<input id="group-name" type="text" size="30"/>
<input id="group-id" type="text" size="20" style="display:none;"/>
</span>
</div>
<hr/>
<table id="group-list">
</table>
</div>
</div>
</body>
</html>