<?php
include "../html.class.php";
$html = new html();

?>
<style>
    body {
        margin-top: 1em;
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        align-content: center;
        justify-content: flex-start;
        align-items: center;
    }
</style>
<div class="tank_item_container">
    <h1>SETTINGS</h1>
</div>

<div class="tank_item_container">
    <h1>TANKS & PUMPS</h1>
    <button class="app_buttons" onclick="window.location.href = 'tanks/tank_settings.php'">TANK SETTINGS</button>
    <br>
    <button class="app_buttons" onclick="window.location.href = 'sites/site_settings.php'">SITE SETTINGS</button>

</div>

<div class="tank_item_container">
    <h1>CLIENTS</h1>
    <button class="app_buttons" onclick="window.location.href = 'clients/home.php'">VIEW</button>
</div>


<div class="tank_item_container">
    <h1>USERS</h1>
    <button class="app_buttons" onclick="window.location.href = 'users/home.php'">VIEW</button>
</div>

<div class="tank_item_container">
    <h1>COMPANY</h1>
    <button class="app_buttons" onclick="window.location.href = 'company/home.php'">VIEW</button>
    <br>
    <button class="app_buttons" onclick="window.location.href = 'notifications/home.php'">NOTIFICATIONS</button>
</div>

<div class="spacer"></div>