Spaces:
Running
Running
<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> |