-
Notifications
You must be signed in to change notification settings - Fork 1
/
userDashboard.php
46 lines (43 loc) · 1.32 KB
/
userDashboard.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
<?php
$title = 'User Dashboard';
include 'header.php';
include_once ('./includes/user-config.inc.php');
?>
<link href="css/userDashboard.css" rel="stylesheet" type="text/css">
<?php include 'user-sidebar.php'; ?>
<div class="vl"></div>
<div class="div1">
<p id="p2">MY SCORE</p>
<div class="div2">
<b>123456</b></div>
<br><br>
<p id="p2">GAME HISTORY(Hide the game history)</p>
<table style="width: 100%" border="1">
<tr>
<td colspan="3">Clear history</td>
</tr>
<tr>
<td>Game</td>
<td>Time</td>
<td>Score</td>
</tr>
<tr id="row1">
<td></td>
<td></td>
<td></td>
</tr>
</table>
<div class="div3">
<p id="p3">
<center>My Status</center>
</p>
Type of subscription :- Premium<br><br>
Member since :- 21/01/2021<br><br>
Total time played :- 4:45:34<br><br>
Number of games played :- 24<br><br>
Rank :- Gold<br>
</div>
</div>
<?php
include 'footer.php';
?>