You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
581 B
PHP
40 lines
581 B
PHP
<?php
|
|
$meta = [
|
|
'title' => 'Profile',
|
|
'description' => 'Profile page',
|
|
'keywords' => ''
|
|
];
|
|
require_once('partial/head.php');
|
|
?>
|
|
|
|
<?php
|
|
require_once('partial/header.php');
|
|
?>
|
|
|
|
<body>
|
|
<main class="layout-wrapper">
|
|
|
|
<h1>Welcome, <?php echo($_COOKIE['userLogged']) ?></h1>
|
|
|
|
<h2>Your Tournaments</h2>
|
|
|
|
<h2>Tournaments</h2>
|
|
<h3>x</h3>
|
|
<div>your team</div> vs <div>othre team</div>
|
|
|
|
<h2>Previous Tournaments</h2>
|
|
<h3>y</h3>
|
|
<div>3rd place</div>
|
|
|
|
<h2>Game Accounts</h2>
|
|
<h2>Team</h2>
|
|
|
|
</main>
|
|
|
|
<?php
|
|
include('partial/footer.php');
|
|
?>
|
|
|
|
</body>
|
|
</html>
|