-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
24 lines (24 loc) · 718 Bytes
/
Copy pathindex.php
File metadata and controls
24 lines (24 loc) · 718 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>Most Likely To</title>
</head>
<body>
<h1>Most Likely To</h1>
<form action="join.php" method="GET">
<input type="text" name="room" placeholder="Enter Room Code" required>
<button type="submit">Join Game</button>
</form>
<form action="create.php" method="POST">
<label for="theme">Choose a theme:</label>
<select name="theme" required>
<option value="general">General</option>
<option value="college">College</option>
<option value="office">Office</option>
</select>
<button type="submit">Create Game</button>
</form>
</body>
</html>