17 lines
596 B
PHP
17 lines
596 B
PHP
<?php
|
|
require_once __DIR__ . '/includes/header.php';
|
|
?>
|
|
|
|
<div class="jumbotron">
|
|
<h1 class="display-4">Welcome to the Hearthstone Tournament Manager!</h1>
|
|
<p class="lead">This is a simple application to manage your Hearthstone tournaments.</p>
|
|
<hr class="my-4">
|
|
<p>You can add teams, create tournaments, and manage matches.</p>
|
|
<a class="btn btn-primary btn-lg" href="/teams.php" role="button">Manage Teams</a>
|
|
<a class="btn btn-secondary btn-lg" href="/tournaments.php" role="button">Manage Tournaments</a>
|
|
</div>
|
|
|
|
<?php
|
|
require_once __DIR__ . '/includes/footer.php';
|
|
?>
|