Exemple #1
0
 	<div class="row">
    	<div class="col-md-6">
    		<div class="form-header">
	    		<h2>Create</h2>
	    	</div>
    		<form role="form" method="post" enctype="multipart/form-data">
				<p><i>* Required Field</i></p>

			 	<div class="form-group <?php 
WEB::_ferror('band_name', $form_error);
?>
">
			    	<label class="control-label" for="band_name">Name *</label>
			    	<input type="text" class="form-control" placeholder="Enter Band Name" id="band_name" name="band_name" value="<?php 
echo $bd->getBandName();
?>
" required>
			  	</div>

			  		<div class="form-group <?php 
WEB::_ferror('band_bio', $form_error);
?>
">
			 		<label for="band_bio">Band Biography</label>
			    	<textarea class="form-control" rows="3" placeholder="Enter Band Biography (Optional)" id="band_bio" name="band_bio"><?php 
echo $bd->getBandBio();
?>
</textarea>
			    </div>