File size: 535 Bytes
df72131
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<html>

<head>
    <title>Round Form</title>
</head>

<body>
    <h1>Room Form</h1>
    <form action="/room/divide" method="POST">
        <label for="Round">Divide questions for which Round:</label>
        <input type="number" id="Round" name="Round" required><br><br>

        <label for="Questions">How many Questions in each room of above entered room:</label>
        <input type="number" id="Questions" name="Questions" required><br><br>

        <input type="submit" value="Submit">
    </form>
</body>

</html>