-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
118 lines (99 loc) · 3.15 KB
/
index.html
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="">
<meta name="author" content="">
<title>Μουτζούρης</title>
<link href="bootstrap/bootstrap.min.css" rel="stylesheet">
<link href="css/moutzouris.css" rel="stylesheet">
<script src="bootstrap/jquery-3.2.1.min.js"></script>
<script src="bootstrap/bootstrap.min.js"></script>
<script src="js/moutzouris.js"></script>
<script src="jquery-ui-1.12.1/jquery-ui.min.js"></script>
<link href="jquery-ui-1.12.1/jquery-ui.min.css" rel="stylesheet">
</head>
<body>
<div id='deck_div' class='container'>
<div >
<h1>Μουτζούρης</h1>
</div>
<div class="container center">
<div class="row">
<div class="col-sm">
<button id='moutzouris_restart' class='btn btn-primary hide' >EΠΑΝΕΝΑΡΞΗ</button>
</div>
<div class="col-sm">
<div class="status font" id="status"></div>
</div>
<div class="col-sm">
<button id='moutzouris_dealCards' class='btn btn-primary disabled' >Μοίρασε χαρτιά</button>
</div>
</div>
</div>
<div class="row">
<div id=empty_board class="col-6 col-lg-6 background">
<p class=player>Player 1</p>
<br/>
<div class=play_buttons>
<button id='delete1' class='btn btn-primary disabled'>Αφαίρεση διπλών</button>
<button id='pick1' class='btn btn-primary'>Πάρε κάρτα</button>
</div>
<br/>
<div id='p1' class="p-style">
</div>
</div>
<div id=empty_board class="col-6 col-lg-6 background2">
<p class=player>Player 2</p>
<br/>
<div class=play_buttons>
<button id='delete2' class='btn btn-primary hide disabled'>Αφαίρεση διπλών</button>
<button id='pick2' class='btn btn-primary hide'>Πάρε κάρτα</button>
</div>
<br/>
<div id='p2' class="p-style">
</div>
</div>
</div>
</div>
<br/>
<!-- <div class="container">
<div class="row">
<div class="col-6 col-lg-6 background">
<p class="p-style">text</p>
</div>
<div class="col-6 col-lg-6 background2">
<p class="p-style">text</p>
</div>
</div>
</div> -->
<div id='game_initializer'>
<!-- <p>---inside game initializer</p> -->
<p>Δώσε όνομα χρήστη και διάλεξε παίκτη</p>
<input id='p_username'>
<select id='p_id'>
<option value='p1'>p1</option>
<option value='p2'>p2</option>
</select>
<br/>
<br/>
<button id='moutzouris_login' class='btn btn-primary'>ΕΙΣΟΔΟΣ ΣΤΟ ΠΑΙΧΝΙΔΙ</button><br>
<!-- <p>--//inside game initializer</p> -->
</div>
<div id='game_info'>
<!-- <p> ---inside game info</p> -->
</div>
<div id='play_div'>
<!-- <p> ---div κίνησης</p> -->
</div>
<div id='game_info'>
</div>
<br/><br/><br/><br/>
<div>
<!-- <p>---buttons div</p> -->
<button id='moutzouris_start' class='btn btn-primary' >ΕΝΑΡΞΗ</button>
<br/> <br/>
<button id='moutzouris_reset' class='btn btn-primary'>RESET</button> </div>
</body>
</html>