Advertisement
Guest User

Untitled

a guest
Oct 30th, 2014
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.11 KB | None | 0 0
  1.  
  2. @section('inputTable')
  3. @stop
  4.  
  5. @section('taxonForm')        
  6. <h1 class='showHiddenButton'>Determination</h1>
  7. <button id='button' type="button">Click</button>  
  8. <hr>
  9. <!--==============================Form of Determination Start============================================= -->
  10.  
  11. {{Form::open(array('url' => 'labelgenerator','method' => 'get', 'class'=>'form-horizontal'))}}
  12. <br>
  13.  
  14.      <div class="well">
  15.             <input type="text" class="span2" value="02-16-2012" id="dp1" >
  16.           </div>
  17. <!--==============================Taxon============================================= -->
  18. <div class="form-group">
  19.   {{Form::label('taxon', 'Taxon', ['class' => 'control-label col-sm-1'])}}
  20.   <div class="col-md-11">
  21.   {{Form::text('taxon', '', ['class' => 'form-control'])}}
  22.   </div>
  23. </div>
  24.  
  25.  
  26. <!--==============================Determiner============================================= -->
  27. <div class="form-group">
  28.   {{Form::label('determinerName', 'Determiner', ['class' => 'control-label col-sm-1'])}}
  29.   <div class="col-md-11">
  30.   {{Form::text('determinerName', '', ['class' => 'form-control'])}}
  31.   </div>
  32. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement