<?php include "../../root.class.php";
$html = new html();
$html->add_styles_page();
$html->check_user_type("ADMIN");

?>

<div class="form_down">
    <h1>ADD USER</h1>
    <?php echo $html->input_html("SUPPLIER NAME", "", "name", "name");
    echo $html->submit_btn('submit', "ADD", 'add_supplier()');
    ?>
</div>

<?php
$html->html_form_ajax("add_supplier", "INSERT", "suppliers", '', false);
?>