mirror of
https://github.com/opensourcepos/opensourcepos.git
synced 2026-07-28 07:37:07 -04:00
31 lines
1.3 KiB
PHP
Executable File
31 lines
1.3 KiB
PHP
Executable File
|
|
<?php $this->load->view("partial/header"); ?>
|
|
|
|
<div class="jumbotron"style="max-width: 57%; margin:0 auto">
|
|
<?php echo form_open('messages/send', array('id'=>'send_sms_form', 'enctype'=>'multipart/form-data', 'method'=>'post', 'class'=>'form-horizontal')); ?>
|
|
<fieldset>
|
|
<legend style="text-align: center;">SEND SMS </legend>
|
|
<div class="form-group">
|
|
<div class="form-group">
|
|
<label for="inputPhone" class="col-lg-2 control-label">Mobile:</label>
|
|
<div class="col-lg-10">
|
|
<input class="form-control", type="text", name="phone", placeholder="Put Mobile No(s) Here !"></input>
|
|
<span class="help-block" style="text-align:center;">( In case of multiple recipients, enter mobile numbers separated with comma )</span>
|
|
</div>
|
|
</div></br>
|
|
<div class="form-group">
|
|
<label for="textArea" class="col-lg-2 control-label">Message:</label>
|
|
<div class="col-lg-10">
|
|
<textarea class="form-control" rows="3" id="textArea" name="msg" placeholder="Put Your Message Here !"></textarea>
|
|
</div>
|
|
</div>
|
|
<div>
|
|
<div class="col-lg-10 col-lg-offset-2">
|
|
<button type="submit" name="submit" class="btn btn-primary btn-md pull-right" value="submit">Submit</button>
|
|
</div>
|
|
</div>
|
|
</fieldset>
|
|
</div>
|
|
|
|
<?php $this->load->view("partial/footer"); ?>
|