-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmatch-setup.html
More file actions
36 lines (34 loc) · 1.53 KB
/
match-setup.html
File metadata and controls
36 lines (34 loc) · 1.53 KB
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
28
29
30
31
32
33
34
35
36
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Match Setup - MatchPal</title>
<link rel="icon" type="image/x-icon" href="./images/favicon.ico">
<link rel="stylesheet" href="style.css">
</head>
<body>
<!--Title Section-->
<h1>Create a Match</h1>
<h2>Enter match info</h2>
<!--Gathering Match Details-->
<form method="POST" id="match-form">
<label for="match-name">Match name:</label><br>
<input type="text" id="match-name" name="match-name" placeholder="El Clasico" maxlength="20" required><br>
<label for="match-time">Match time (minutes):</label><br>
<input type="number" step="1" id="match-time" name="match-time" value="12"><br>
<label for="home-team-name">Home Team Name:</label><br>
<input type="text" id="home-team-name" name="home-team-name" placeholder="Real Madrid" maxlength="20" required><br>
<label for="away-team-name">Away Team Name:</label><br>
<input type="text" id="away-team-name" name="away-team-name" placeholder="FC Barcelona" maxlength="20" required><br>
<div id="create-match-button" class="menu-button" tabindex="0">Create Match</div>
</form>
<!--Return to Menu-->
<a href="index.html">
<button id="return-to-menu" class="menu-button">Return to menu</button>
</a>
<div id="bottom-spacer"></div>
<script src="index.js"></script>
</body>
</html>