/
var
/
www
/
html
/
plugin-techloyce
/
resources
/
views
/
Upload File
HOME
<?php //echo "<pre>"; //print_r($data);die; ?> <!doctype html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>Techloyce</title> <!--<link href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css"> <script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.0/js/bootstrap.min.js"></script> --> <!-- Latest compiled and minified CSS --> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous"> <script src="//code.jquery.com/jquery-1.11.1.min.js"></script> <!-- Latest compiled and minified JavaScript --> <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script> </head> <body> <div class="container"> <div class="row text-left" style="margin-top: 50px;"> <div class="col-sm-6 col-sm-offset-3"> <form action="{{ route('sms-request') }}" method="post"> <input type="hidden" name="identifier" value="{{ $data['identifier'] }}"> <input type="hidden" name="lead_id" value="{{ $data['lead_id'] }}"> <input type="hidden" name="module" value="{{ $data['module'] }}"> <input type="hidden" name="app" value="{{ $data['app'] }}"> <input type="hidden" name="source" value="{{ $data['source'] }}"> <input type="hidden" name="zoho_domain" value="{{ $data['zoho_domain'] }}"> <div class="form-group"> <label for="to">To</label> <input name="to" value="{{ $data['to'] }}" type="text" class="form-control" id="to" placeholder="Enter SMS Title" readonly=""> </div> <div class="form-group"> <label for="sms_body">SMS Body</label> <textarea class="form-control" name="sms_body" id="sms_body" placeholder="SMS body" required></textarea> </div> <button type="submit" class="btn btn-primary">Send SMS</button> </form> </div> </div> </div> </body> </html> <!------ Include the above in your HEAD tag ---------->