Advertisement
oscar11

t1

Oct 29th, 2015
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.19 KB | None | 0 0
  1. <div class="box">
  2. <div class="box-body">
  3. <div class="row">
  4. <div class="col-lg-6">
  5. <div class="form-group">
  6. <label for="penumpang" style="height: 30px;">Penumpang:</label>
  7. <ol class="nested_with_switch vertical" id="penumpang">
  8. <?php if($konsumen->num_rows>0):
  9. foreach($konsumen->result() as $c): ?>
  10. <li data-id="<?php echo $c->id ?>" data-name="<?php echo $c->nama.'#'.$c->kota;?>">
  11. <?php echo $c->nama." - {$c->kota}"?>
  12. </li>
  13. <?php endforeach;
  14. endif;
  15. ?>
  16. </ol>
  17. </div>
  18. </div>
  19.  
  20. <form role="form" name="myForm" id="tes" action="<?php echo site_url().$form_test; ?>" method="POST">
  21. <input type="hidden" name="id_jadwal" value="<?php echo $id?>">
  22. <input type="hidden" name="serialize" id="serialize" required="required">
  23. <div class="col-lg-6">
  24. <div class="form-group">
  25. <label for="country_id">Room :</label>
  26. <select id="hotel_type">
  27. <?php foreach($hotels as $rt): ?>
  28. <option value="<?php echo $rt->id?>"><?php echo $rt->hotel_name?></option>
  29. <?php endforeach;?>
  30. </select>
  31. <input type="text" name="hotel_type_number" value="1"
  32. id="hotel_type_number" style="width: 36px; height: 28px;">
  33. <input type="button" value="Add" style="margin-top: -10px;" id="add_hotel">
  34. <br><br>
  35. <ol class="nested_with_switch vertical" id="hotel_list">
  36. </ol>
  37. </div>
  38. </div>
  39. <div class="col-lg-12">
  40. <div class="control-group" style="float:right;">
  41. <div class="controls">
  42. <button type="submit" class="btn btn-primary">Save changes</button>&nbsp;
  43. <button type="button" class="btn btn-default" onClick="history.go(-1);return true;">Cancel</button>
  44. </div>
  45. </div>
  46. </div>
  47. </form>
  48.  
  49. </div>
  50. </div>
  51.  
  52. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement