diff options
Diffstat (limited to 'application/modules/user/views/scripts/client')
| -rw-r--r-- | application/modules/user/views/scripts/client/index.phtml | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/application/modules/user/views/scripts/client/index.phtml b/application/modules/user/views/scripts/client/index.phtml index 62c698c..0442d95 100644 --- a/application/modules/user/views/scripts/client/index.phtml +++ b/application/modules/user/views/scripts/client/index.phtml @@ -1,5 +1,14 @@ <h1>Clients</h1> <?php if($this->notification != ''){echo $this->notification;} ?> +<form action='/user/client/search'> +<input type='text' name='search' <?php echo isset($this->search)?'value="'.$this->search.'"':'';?>> +<input type='submit' value='search'> +<?php +if(isset($this->search)){ + echo "<a href='/user/client/'><img src='/media/img/delete.png' alt='Delete Client'/></a>"; +} +?> +</form> <?php echo $this->formButton('createbootos', 'Create Client', array( 'onclick' => 'self.location="/user/client/addclient/page/'.$this->page.'"', 'class' => 'addbutton'))?> |
