<?php include "../../root.class.php";
$html = new html();
$html->add_styles_page();

?>

<div class="form_down">
    <h1>ADD USER</h1>
    <?php echo $html->input_html("name", "", "name", "name"); ?>
    <?php echo $html->input_html("conmpany_id", $_SESSION['company_id'], "company_id", "company_id",'hidden','','','','hidden '); 
    echo $html->submit_btn("submit", 'SAVE', 'add_restorant()');?>

</div>

<?php
$html->html_form_ajax("add_restorant",  "INSERT", "restorants", '', false);
?>