<?php include "../../root.class.php";
$html = new html();
$html->add_styles_page();

?>

<div class="search_form">
    <h1>WORK ORDERS</h1>
    <?php
    echo $html->input_html('', 1, 'completed', 'completed', '', '', '', 'text', 'hidden');
    echo $html->input_html('', 0, 'singed_off', 'singed_off', '', '', '', 'text', 'hidden');
    ?>
    <button id="submit" hidden></button>
</div>

<?php
echo $html->html_form_ajax("search_active_service_tickets", "SELECT", "work_orders", '', false, ['project_id','name','work_order_type_id'], "work_order_sign_off.php");
?>
<script>
    search_active_service_tickets();
</script>