File size: 459 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/enter" method="POST">
        <label for="MaxTeams">MaxTeams:</label>
        <input type="number" id="MaxTeams" name="MaxTeams" required><br><br>

        <label for="Round">Round:</label>
        <input type="number" id="Round" name="Round" required><br><br>

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

</html>