File size: 1,254 Bytes
df72131
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<!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>