-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
47 lines (42 loc) · 1.59 KB
/
index.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
35
36
37
38
39
40
41
42
43
44
45
46
47
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link href="//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/js/bootstrap.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<!------ Include the above in your HEAD tag ---------->
<script>
</script>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<br/><br/>
<div class="tabs">
<div class="tab-contents">
<h3 align="center">Welcome to Admin Panel</h3>
<table style="width: 28%;" align="center" cellpadding="10">
<tbody>
<tr>
<td><button type="button" class="btn btn-info btn-sm btn-block" onclick="location.href='./matchmaster/';">Match Master</button></td>
</tr>
<tr>
<td><button type="button" class="btn btn-info btn-sm btn-block" onclick="location.href='./scoreupdate/';">Player's Match Score Update</button></td>
</tr>
<tr>
<td><button type="button" class="btn btn-info btn-sm btn-block" onclick="location.href='./playerdetails/';">Players Details Info</button></td>
</tr>
<tr>
<td><button type="button" class="btn btn-info btn-sm btn-block" onclick="location.href='./transactions/';">Player's Transactions</button></td>
</tr>
<!--<tr>-->
<!--<td><button type="button" class="btn btn-info btn-sm btn-block">Info</button></td>-->
<!--</tr>-->
</tbody>
</table>
</div>
</div>
</body>
</html>