-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
106 lines (102 loc) · 4.61 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>
Champions League
</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<link href="style.css" rel="stylesheet">
</head>
<body>
<div class="container">
<!--HEADER-->
<div class="page-header text-center">
<h1 class="headerText">CHAMPIONS LEAGUE</h1>
<button class="btn btn-danger baslaSifirlaButton" onclick="startLeague()" id="baslaButton">START</button>
</div>
<div class="row hidden" id="simulatorScreen">
<!--LIG TABLOSU-->
<div class="col-lg-4">
<table class="table table-bordered bg-primary" id="leagueTable">
<tr>
<h3 class="text-center">LEAGUE TABLE</h3>
</tr>
<hr />
<tr>
<h4 class="text-center">TURKISH SUPER LEAGUE</h6>
</tr>
<tr>
<th>Rank</th>
<th>Teams</th>
<th>PTS</th>
<th>P</th>
<th>W</th>
<th>D</th>
<th>L</th>
<th>GD</th>
</tr>
</table>
</div>
<div class="col-lg-4">
<table class="table table-bordered text-center bg-primary" id="championsChance">
<tr class="chanceHead">
<h3 class="text-center">CHAMPIONSHIP CHANCE</h3>
</tr>
<hr />
<tr>
<th>TEAMS</th>
<th>CHANCE</th>
</tr>
</table>
<div class="alert alert-success text-center hidden" id="champmionAlert">CHAMPION BAŞAKŞEHIR</div>
</div>
<!--FIXTÜR TABLOSU-->
<div class="col-lg-4">
<table class="table table-bordered text-center bg-primary" id="fixturesTable">
<tr class="fixturHead">
<h3 class="text-center">FIXTURES</h3>
</tr>
<hr />
<tr class="fixturHead">
<nav aria-label="...">
<ul class="pager">
<li class="previous"><a onclick="displayPreviousWeekMatches()" href="#"><span
aria-hidden="true">←</span> Previous</a></li>
<li class="week"><b id="fixtureWeek">-</b></li>
<p hidden id="weekNumber"></p>
<li class="next"><a onclick="displayNextWeekMatches()" href="#">Next <span
aria-hidden="true">→</span></a></li>
</ul>
</nav>
<button class="btn btn-default form-control" id="btnUpdate"
onclick="updateMatchScore()">UPDATE</button>
</tr>
<br />
<br />
<tr class="fixturHead">
<th class="text-center">HOME</th>
<th class="text-center">#</th>
<th class="text-center">-</th>
<th class="text-center">#</th>
<th class="text-center">AWAY</th>
</tr>
</table>
</div>
</div>
<div class="row hidden" id="engineButtons">
<div class="col-lg-4 text-left">
<Button class="btn btn-danger btnBaslaSifirla hidden" onclick="autoFinishLeague()"
id="finishLeague">SIMULATE ALL <br> MATCHES</Button>
</div>
<div class="col-lg-4 col-lg-offset-4 text-right">
<Button class="btn btn-danger btnBaslaSifirla" id="btnIlerle" onclick="PlayAndNextWeek()">NEXT
WEEK</Button>
</div>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
<script src="index.js"></script>
</body>
</html>