mirror of
https://gitlab.com/ruany/litebans-php.git
synced 2025-05-23 08:29:06 +00:00
17 lines
534 B
PHP
17 lines
534 B
PHP
<?php
|
|
include './includes/head.php';
|
|
include './includes/header.php';
|
|
include_once './includes/settings.php';
|
|
$settings = new Settings(false);
|
|
?>
|
|
<title>Index - <?php echo $settings->name; ?></title>
|
|
<div class="container">
|
|
<div class="jumbotron">
|
|
<div style="text-align: center;"><h2>Welcome to <?php echo $settings->name; ?>'s Ban List.</h2></div>
|
|
|
|
<div style="text-align: center;"><p>Here is where our Bans, Mutes, and Warnings are listed.</p></div>
|
|
</div>
|
|
|
|
</div>
|
|
<?php include './includes/footer.php'; ?>
|