RaptusBackend / Admin /Public /question.html
GitHub Actions
Initial commit
df72131
<!DOCTYPE html>
<html lang="en">
<head>
<title>Document</title>
</head>
<body>
<!-- Login container -->
<div class="container">
<form class="myform" action="/qsns/enter" method="POST">
<h1>Enter</h1>
<label for="QusetionNumber">QuestionNumber:</label>
<input type="number" name="QuestionNumber" id="QsNumber">
<br>
<label for="Question">Question:</label>
<input type="text" name="Question" id="Question">
<br>
<label for="Description">Description:</label>
<input type="text" name="Description" id="Description">
<br>
<label for="Answer">Answer:</label>
<input type="text" name="Answer" id="Answer">
<br>
<label for="Hint">Hint:</label>
<input type="text" name="Hint" id="Hint">
<br>
<label for="Round">For which Round:</label>
<input type="number" name="Round" id="Round">
<br>
<label for="Points">Points:</label>
<input type="number" name="Points" id="Points">
<br>
<button>Enter</button>
<br>
</form>
</div>
</body>
</html>