<link href="bootstrap/css/bootstrap.min.css" rel="stylesheet">
            <div class="table table-responsive ">
                <table class="table table-bordered ">
                    <thead>
                    <tr style="background: #ececec">
                        <th>Full Name</th>
                        <th>User Name</th>
                        <th>Reg. Date</th>
                        <th></th>
                    </tr>
                    </thead class="table table-condensed">
                    <tbody >
                    <?php 
require_once 'private/LMS_Engine.php';
$engine = new LMS_Engine();
$found = $engine->get_all_librarians();
foreach ($found as $found) {
    $User_Table = $found;
    $Staff_Table = $engine->get_staff_by($found['id']);
    include 'pages/elements/Librarian_Users_Table_Items.php';
}
?>
                    </tbody>
                </table>
            </div>
        </div>

        <div class="col-md-3 col-lg-3" style="margin-left: 50px" >
            <form class="form-vertical" role="form" method="post" action="">
                <label class="control-label">Add New Librarian: </label>
                <hr>