31 lines
994 B
HTML
31 lines
994 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Customised Qualifiers</title>
|
|
</head>
|
|
<body>
|
|
<h1>Importing of customised qualifiers</h1>
|
|
|
|
<p>This form allows you to export the customised qualifying information relating to the survey</p>
|
|
<p>You will need to enter the appropriate surveyId, and then click submit, and the data will be imported
|
|
into the <a href='./reportTemplate.html'>analysis tool</a></p>
|
|
</p>
|
|
|
|
<p>If you enter no surveyId or invalid one, then the script will check for that value and create a template anyway. At
|
|
some point in the future these invalid templates may have to be cleaned up?
|
|
</p>
|
|
|
|
|
|
<form action="getQuestionsData.php" method="POST">
|
|
<label for="surveyId">Survey ID:</label>
|
|
<input type="text" id="surveyId" name="surveyId" required>
|
|
<button type="submit">Submit</button>
|
|
</form>
|
|
|
|
|
|
|
|
|
|
</body>
|
|
</html> |