Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
23010 amit.gupta 1
<style>
2
td.cell div {
3
	width: 100%;
4
	height: 100%;
5
	overflow: scroll;
6
}
7
 
8
td.cell {
9
	height: 100px;
10
}
11
</style>
12
 
13
<script type="text/javascript">
14
$(function(){
15
 
16
});
17
</script>
18
<div class="container">
19
	<div class="row">
20
		<div class="col-lg-3">
21
		<?php echo $this->Element('adminactions');?>
22
		</div>
23
		<div class="col-lg-9">
24
			<h2>Banners</h2>
25
						<?php 
26
				echo $this->Form->create('Banners');
27
			?>
28
			<fieldset>
29
 
30
				<?php 
31
					$cbd = array('dashboard'=> 'Dashboard');
32
					echo $this->Form->input('rank',array('type'=>'number', 'step'=>'1'));
33
					echo $this->Form->input('type',array('options'=>$cbd, 'selected'=>'Dashboard'));
34
					echo $this->Form->input('imgUrl',array('required'=>true));
35
					echo $this->Form->input('link',array('required'=>false));
36
 
37
				?>
38
 
39
			</fieldset>
40
			<?php echo $this->Form->end(__('Submit')); ?>	
41
 
42
		</div>
43
	</div>
44
</div>