21 lines
533 B
PHP
21 lines
533 B
PHP
<?php echo $javascript->link('search'); ?>
|
|
|
|
<div class="customers form">
|
|
|
|
<?php echo $form->create('Enquiry', array('default'=>false));
|
|
echo '<h2>Search';
|
|
echo $html->image('system-search.png');
|
|
echo '</h2>';
|
|
echo "<p>Enter part of an Enquiry Number, Customer Name or Contact Name</p>";
|
|
echo $form->input('Enquiry.search_string', array('label'=>false, 'id'=>'searchString'));
|
|
?>
|
|
|
|
<div class ="ui-widget">
|
|
<button id="searchButton">Search</button>
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div id="results"></div>
|