<?php include "../../root.class.php";
$html = new html();
$html->add_styles_page();

?>
<!-- <div class="body_container"> -->
    <h1 class="title" style="margin-top:2vw">SEARCH NOTES</h1>

    <div class="search_form">


        <?php echo $html->select_html_from_db("clients", "record_id", "name", "", "client_id", "client_id", "inputs"); ?>
        <?php echo $html->input_html("A WORD IN YOUR NOTES", "", "notes", "notes"); ?>
        <?php echo $html->input_html("A WORD IN YOUR HEADING", "", "heading", "heading"); ?>
        <?php echo $html->submit_btn('submit', 'SEARCH', 'search_notes()'); ?>

    </div>

    <?php

    echo $html->html_form_ajax("search_notes", "SELECT", "notes", '', false, ['date_time_changed', 'heading', 'notes', 'client_id'], "edit_notes.php");

    ?>
<!-- </div> -->