<?php include "../../root.class.php";
$html = new html();
$html->add_styles_page();

?>

<div class="form_down">
    <h1>ADD TABLE</h1>
    <?php echo $html->input_html("name", "", "name", "name");
    echo $html->input_html("", $_SESSION['restorant_id'], "restorant_id", "restorant_id");

    echo $html->submit_btn("submit", 'SAVE', 'add_table()');
    ?>



</div>

<?php
$html->html_form_ajax("add_table", "INSERT", "tables", '', false);
?>