/
var
/
www
/
html
/
plugin-techloyce
/
resources
/
views
/
Upload File
HOME
<!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 Authorization</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-center" style="margin-top: 50px;"> <div class="col-sm-6 col-sm-offset-3"> @if($response['status'] == true) <br><br> <h2 style="color:#0fad00">Congratulations!</h2> <img width="120px" src="{{ asset("images/Check.png") }}"> <br><br> <p style="font-size:20px;color:#5C5C5C;">Your Account has been Authorized. You can now use our app.</p> <br><br> @else <br><br> <h2 style="color:#ad100c">Some Thing Went Wrong!</h2> <img width="120px" src="{{ asset("images/Cross.png") }}"> <br><br> <p style="font-size:20px;color:#5C5C5C;">{{ $response['data'] }}.</p> <br><br> @endif </div> </div> </div> <script> setInterval(function(){ window.close(); }, 10000); </script> </body> </html> <!------ Include the above in your HEAD tag ---------->