File size: 736 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
<!DOCTYPE html>
<html>

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

<body>
    <h1>Round Form</h1>
    <form action="/rounds/enter" method="POST">
        <label for="round">Round:</label>
        <input type="number" id="round" name="round" required><br><br>

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

        <label for="startTime">Start Time:</label>
        <input type="datetime-local" id="startTime" name="startTime" required><br><br>

        <label for="endTime">End Time:</label>
        <input type="datetime-local" id="endTime" name="endTime" required><br><br>

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

</html>