Advertisement
Guest User

Untitled

a guest
Nov 26th, 2014
156
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.88 KB | None | 0 0
  1. <div class="controls-row" id="visitNature">
  2. <div class="span2">
  3. <?php echo $this->Form->label('visit_nature', 'Symptomatic or Asymptomatic', array('class'=>'required')); ?>
  4. </div>
  5. <div class="span10">
  6. <?php
  7. echo $this->Form->input('visit_nature', array(
  8. 'options' => array('Symptomatic' => 'Symptomatic', 'Asymptomatic' => 'Asymptomatic'),
  9. 'empty' => '--Select Vist Nature--',
  10. 'class'=>'validate[required]',
  11. ));
  12. ?>
  13. <span class="help-inline">Does the patient have symptoms or not</span>
  14. </div>
  15. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement