This repository was archived by the owner on Feb 28, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathdashboard-player.php
More file actions
35 lines (28 loc) · 1.39 KB
/
dashboard-player.php
File metadata and controls
35 lines (28 loc) · 1.39 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
<?php
$page_name = 'Player Profile - Dashboard';
require_once('./inc/includes.php');
$player_id = $_GET['id'] ?? 'Unknown';
//require_once('./inc/pages/dashboard_top_players.php');
require_once('header.php');
require_once('navbar.php');
?>
<div class="">
<div class="col-lg-11 mx-auto pb-1">
<section class="my-4 pb-1">
<div class="" id="player-profile-load">
<h5><a href="dashboard-players.php" class="text-muted text-decoration-none">Surf Stat's <?php echo PROFILE_PLAYER_PROFILE;?></a> / <?php echo $player_id; ?> <a href="https://steamcommunity.com/profiles/<?php echo $player_id; ?>" target="_blank" title="<?php echo $player_id; ?> - Steam Profile" class="link-secondary text-decoration-none"><i class="fab fa-steam"></i></a></h5>
<hr class="mt-0 mb-3">
<div class="text-center text-muted py-4">
<div class="spinner-grow text-dark my-2" role="status">
<span class="sr-only"><?php echo LOADING; ?>...</span>
</div>
<h5><?php echo LOADING_PLAYER_PROFILE; ?>...<br><small><?php echo PLEASE_WAIT; ?>...</small></h5>
</div>
</div>
</section>
</div>
</div>
<?php
require_once('footer.php');
$db_conn_surftimer->close();
?>