<?php include "../../root.class.php";
$html = new html();
$html->add_styles_page();




$name = new input();
$name->class();
$name->name("name");
$name->id("name");
$name->placeholder("NAME");
$name->onkeyup("search_stock_type()");


?>

<div class="row">
    <?php
    echo $html->selectable_block("home.php", "BACK TO STOCK");
    ?>

    <div class="search_form">
        <?php
        $name->add();
        ?>
    </div>
</div>


<?php
$ajax = new js_ajax();
$ajax->select("stock_types");
$ajax->run_on_load();
$ajax->function_name("search_stock_type");
$ajax->return_columns(["name"]);
$ajax->redirect("edit_stock_type.php");
// echo $html->html_form_ajax("search_asset_type", "SELECT", "asset_types", '', false, ['name', 'description'], "edit_asset_type.php");

?>