<style>
	select, input[type="file"]{
	height: auto !important;
	}
</style>



<div class="main">
	<div class="col-md-12 box-inner"  style="margin-top: 20px; padding:0;">
		<?php echo $this->Form->create('Multicourse',array('type' => 'file','class'=>'form-horizontal','role'=>'form','url'=>array('controller'=>'multicourses','action'=>'xlsfile'))); ?>
			<fieldset>
				<div class=""><h2><?php echo __('Upload Course'); ?></h2></div>
				<div class="form-group">
					<div class="col-sm-3">
						<?php echo $this->Form->file('xls_file', array('type'=>'file','label'=>false,'class' => 'form-control'));
						?>
						<div class="btn-group" style="margin-top: 10px;">
							<button type="submit" class="btn">Submit</button>
						</div>
					</div>
				</div>
			
			</fieldset>
		<?php echo $this->Form->end(); ?>
	</div>
</div>

