-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrokudoku2.php
34 lines (29 loc) · 908 Bytes
/
rokudoku2.php
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Rokudoku</title>
<style>
body {
background-color: darkgray
}
h1 {
color: crimson
}
</style>
</head>
<body>
<form action="rokudoku_game.php" method="POST">
<h1>Rokudoku!</h1>
Unesi svoje ime:
<input type="text" name="name">
<select name="game_select">
<option selected disabled></option>
<option value="game_1" selected>Prva igra</option>
<option value="game_2">Druga igra</option>
</select>
<button type="submit" , name="btn_play">Započni igru!</button>
</form>
</body>
</html>