-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathdraft-page.html
More file actions
111 lines (106 loc) · 5.16 KB
/
Copy pathdraft-page.html
File metadata and controls
111 lines (106 loc) · 5.16 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
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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" class="__meteor-css__" href="https://d3ibm5lrns1d5x.cloudfront.net/a948b5d6d805f940e59d7e9c7c15240c7224aa16.css?meteor_css_resource=true">
<title>DraftRes - Premier League Fantasy Football Draft</title>
<link href="https://fonts.googleapis.com/css?family=Titillium+Web:300,400,400i,600|Oswald:500" rel="stylesheet">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.3.0/font/bootstrap-icons.css"/>
<link rel="stylesheet" href="plugins/themify-icons/themify-icons.css">
<link href="css/style2.css" rel="stylesheet">
</head>
<body>
<div class="row" style="background-color: #07085d;margin-bottom: 25px;">
<a class="navbar-brand" href="index.html"><img src="css/icons/logo-transparent-png.png" width="160" alt="Egen"></a>
</div>
<div class="row">
<div class="col-lg-1 col-md-3 col-sm-3 col-xs-12" style="height: 100%; width: 25%; padding:5px 30px 30px 25px;">
<div style="text-align: center;min-width: 175px;">
<div style="color: rgb(43, 50, 84); font-size: 22px;" id="timer">
WELCOME TO <span style="font-weight: bold;" id="leagueName"></span>
</div>
</div>
</div>
</div>
<div class="row" style="margin-left: 0px; margin-right: 0px; margin-bottom: 25px;">
<div class="col-md-12" >
<div style="width: 100%; height: 120px;">
<div class="col-lg-1 col-md-3 col-sm-3 col-xs-12" style="height: 100%; width: 15%; padding:25px 30px 30px 25px; background-color: rgb(255, 255, 255);">
<div style="text-align: center;min-width: 175px;">
<div style="color: rgb(43, 50, 84); font-size: 22px;" id="timer">
Your Team:
<span style="font-weight: bold;" id="yourTeam"></span>
</div>
</div>
</div>
<div class="scroll-container" style="width: 85%;" id="draftRounds"></div>
</div>
</div>
</div>
<div class="row" style="margin-left: 0px; margin-right: 0px; ">
<div class="col-md-4" style="display: flex; justify-content: center;">
<div class="hidden-xs" style="margin-bottom: 10px; text-align: center; display: flex; justify-content: center;">
<div class="btn-group btn-group-justified" role="group">
<div class="btn-group" role="group">
<button type="button" class="btn btn-default btn-active" id="playersBtn">Players</button>
</div>
<div class="btn-group" role="group">
<button type="button" class="btn btn-default" id="myTeamBtn">My Team</button>
</div>
</div>
</div>
</div>
</div>
<div class="col-md-12" id="playersTable">
<div class="search">
<input type="text" id="playerSearch" placeholder="Search Player">
</div>
<table id="assetTable">
<thead>
<tr>
<th>Photo</th>
<th>Name</th>
<th>Age</th>
<th>Nationality</th>
<th>Overall</th>
<th>Potential</th>
<th>Club</th>
<th>Preferred Foot</th>
<th>Weak Foot</th>
<th>Skill Moves</th>
<th>Position</th>
<th>Select</th>
</tr>
</thead>
<tbody>
<!-- Player data will be inserted here -->
</tbody>
</table>
<div id="pagination">
<button id="prevButton">Previous</button>
<span id="pageNumberContainer"></span>
<button id="nextButton">Next</button>
</div>
</div>
<div class="row">
<div class="col-md-6" style="display: flex; justify-content: center;" id="teamsTable">
<!-- Structure similar to players table -->
<table id="myTeamTable">
<thead>
<tr>
<th>Photo</th>
<th>Name</th>
<th>Overall</th>
<th>Club</th>
</tr>
</thead>
<tbody>
<!-- Player data will be inserted here -->
</tbody>
</table>
<!-- You can include pagination for teams table if needed -->
</div>
</div>
<script src="https://cdn.resilientdb.com/resilient-sdk.js" type="module"></script>
<script src="js/draft-page.js" type="module"></script>
</body>
</html>