20 lines
591 B
PHP
Executable file
20 lines
591 B
PHP
Executable file
|
|
|
|
<div class="customers form">
|
|
<?php echo $this->element('tipbox', array('tip' => "Start typing the Company name into the box, a list of results should appear. Select the Customer you're looking for and click 'View'")); ?>
|
|
<?php echo $form->create('Customer', array('action'=>'find'));
|
|
echo '<h2>Find Customer';
|
|
echo $html->image('system-search.png');
|
|
echo '</h2>';
|
|
echo '<div class="input text">';
|
|
echo $form->label('Customer.name', 'Company Name');
|
|
echo $ajax->autoComplete('name', '/customers/completeCustomer');
|
|
echo '</div>';
|
|
echo $form->end('Find');
|
|
|
|
?>
|
|
|
|
|
|
</div>
|
|
|