Advertisement
Guest User

Untitled

a guest
Nov 3rd, 2015
225
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.65 KB | None | 0 0
  1. <!-- Modal -->
  2. <div id="myModal" class="modal fade" role="dialog">
  3. <div class="modal-dialog">
  4.  
  5. <!-- Modal content-->
  6. <div class="modal-content">
  7. <div class="modal-header">
  8. <button type="button" class="close" data-dismiss="modal">&times;</button>
  9. <h4 class="modal-title">Solve the Captcha</h4>
  10. </div>
  11. <div class="form-group">
  12. <?php echo $data["captcha"]; ?>
  13. <div class="text-center">
  14. <?php
  15. if (count($data['captcha_info']['available']) > 1) {
  16. foreach ($data['captcha_info']['available'] as $c) {
  17. if ($c == $data['captcha_info']['selected']) {
  18. echo '<b>' .$c. '</b> ';
  19. } else {
  20. echo '<a href="?cc='.$c.'">'.$c.'</a> ';
  21. }
  22. }
  23. }
  24. ?>
  25. </div>
  26. <div>
  27. <ins class="bmadblock-55e450ccc86fbae342567dec" style="display:inline-block;width:300px;height:250px;"></ins>
  28. </div>
  29. <input type="submit" class="btn btn-primary btn-lg" value="Get reward!" align="center">
  30. </div>
  31. <div class="modal-footer">
  32. <button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
  33. </div>
  34. </div>
  35.  
  36. </div>
  37. </div>
  38. </form>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement