-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplayer.php
More file actions
32 lines (32 loc) · 959 Bytes
/
player.php
File metadata and controls
32 lines (32 loc) · 959 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
25
26
27
28
29
30
31
32
<html>
<head>
<title>Kicker Tracker</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id='root'>
<div class='box header'>
<div class='title'>
Kicker Elo
</div>
<div class='config'>
<div class='new_game'>
Adding player...
</div>
</div>
</div>
<form action="/index.php" class='box add_player'>
<div class='add_player_label'>
<label for="field_name">Name:</label>
</div>
<div class='add_player_field'>
<input type="text" id="field_name" name="name" class="field">
</div>
<div class='add_player_ack'>
<input type="submit" value="Go!" class="submit">
</div>
</form>
</div>
</body>
</html>