| Line 58... |
Line 58... |
| 58 |
<?php echo $this->Form->input('title');?>
|
58 |
<?php echo $this->Form->input('title');?>
|
| 59 |
<?php echo $this->Form->input('message');?>
|
59 |
<?php echo $this->Form->input('message');?>
|
| 60 |
<?php echo $this->Form->input('type',array('type'=>'select','options' => array('url'=>'Url','native'=>'Native','update'=>'Update')));?>
|
60 |
<?php echo $this->Form->input('type',array('type'=>'select','options' => array('url'=>'Url','native'=>'Native','update'=>'Update')));?>
|
| 61 |
<?php echo $this->Form->input('url');?>
|
61 |
<?php echo $this->Form->input('url');?>
|
| 62 |
<?php echo $this->Form->input('expiresat',array('type'=>'datetime'));?>
|
62 |
<?php echo $this->Form->input('expiresat',array('type'=>'datetime'));?>
|
| 63 |
<?php echo $this->Form->input('sendsms',array('type'=>'checkbox'));?>
|
63 |
<?php echo $this->Form->input('sendsms');?>
|
| 64 |
<?php echo $this->Form->input('messagetext');?>
|
64 |
<?php echo $this->Form->input('messagetext', array('size'=>130,'maxlength'=>130,'placeholder'=>' Max Length 130 Character(s)'));?>
|
| 65 |
<button type="submit" class="btn btn-success btn-block notifyusers">Send</button>
|
65 |
<button type="submit" class="btn btn-success btn-block notifyusers">Send</button>
|
| 66 |
</div>
|
66 |
</div>
|
| 67 |
<?php echo $this->Form->end();?>
|
67 |
<?php echo $this->Form->end();?>
|
| 68 |
</div>
|
68 |
</div>
|
| 69 |
|
69 |
|