EliteConf
 All Data Structures Namespaces Files Functions Variables Pages
_search.php
Go to the documentation of this file.
1 <?php
2 /* @var $this UsersController */
3 /* @var $model Users */
4 /* @var $form CActiveForm */
5 ?>
6 
7 <div class="wide form">
8 
9 <?php $form=$this->beginWidget('CActiveForm', array(
10  'action'=>Yii::app()->createUrl($this->route),
11  'method'=>'get',
12 )); ?>
13 
14  <div class="row">
15  <?php echo $form->label($model,'userid'); ?>
16  <?php echo $form->textField($model,'userid',array('size'=>6,'maxlength'=>6)); ?>
17  </div>
18 
19  <div class="row">
20  <?php echo $form->label($model,'username'); ?>
21  <?php echo $form->textField($model,'username',array('size'=>20,'maxlength'=>20)); ?>
22  </div>
23 
24  <div class="row">
25  <?php echo $form->label($model,'firstname'); ?>
26  <?php echo $form->textField($model,'firstname',array('size'=>60,'maxlength'=>60)); ?>
27  </div>
28 
29  <div class="row">
30  <?php echo $form->label($model,'lastname'); ?>
31  <?php echo $form->textField($model,'lastname',array('size'=>40,'maxlength'=>40)); ?>
32  </div>
33 
34  <div class="row">
35  <?php echo $form->label($model,'email'); ?>
36  <?php echo $form->textField($model,'email',array('size'=>60,'maxlength'=>100)); ?>
37  </div>
38 
39  <div class="row buttons">
40  <?php echo CHtml::submitButton('Search'); ?>
41  </div>
42 
43 <?php $this->endWidget(); ?>
44 
45 </div><!-- search-form -->