Subversion Repositories SmartDukaan

Rev

Rev 17458 | Rev 19075 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 17458 Rev 17489
Line 66... Line 66...
66
		<?php echo $this->Form->input('title');?>
66
		<?php echo $this->Form->input('title');?>
67
		<?php echo $this->Form->input('message');?>
67
		<?php echo $this->Form->input('message');?>
68
		<?php echo $this->Form->input('type',array('type'=>'select','options' => array('url'=>'Url','native'=>'Native','update'=>'Update')));?>
68
		<?php echo $this->Form->input('type',array('type'=>'select','options' => array('url'=>'Url','native'=>'Native','update'=>'Update')));?>
69
		<?php echo $this->Form->input('url');?>
69
		<?php echo $this->Form->input('url');?>
70
		<?php echo $this->Form->input('expiresat',array('type'=>'datetime'));?>
70
		<?php echo $this->Form->input('expiresat',array('type'=>'datetime'));?>
71
		<?php echo $this->Form->input('sendsms');?>
71
		<?php echo $this->Form->input('sendsms',array('type'=>'checkbox'));?>
72
		<?php echo $this->Form->input('messagetext', array('size'=>130,'maxlength'=>130,'placeholder'=>' Max Length 130 Character(s)'));?>
72
		<?php echo $this->Form->input('messagetext', array('size'=>130,'maxlength'=>130,'placeholder'=>' Max Length 130 Character(s)'));?>
73
		<button type="submit" class="btn btn-success btn-block notifyusers">Send</button>				
73
		<button type="submit" class="btn btn-success btn-block notifyusers">Send</button>				
74
	</div>
74
	</div>
75
	<?php echo $this->Form->end();?>
75
	<?php echo $this->Form->end();?>
76
</div>
76
</div>
77
77