Advertisement
Guest User

Untitled

a guest
Jan 16th, 2019
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.09 KB | None | 0 0
  1. <?php
  2. require 'password_check.php'
  3. ?>
  4. <html>
  5. <head>
  6. <link rel="shortcut icon" type="image/x-icon" href="images/favicon.ico" />
  7. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  8. <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
  9. <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
  10. <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
  11. <style>
  12. .container {
  13. margin-top: 70px;
  14. }
  15. h2 {
  16. text-align: center;
  17. }
  18. .ahref {
  19. text-decoration: none;
  20. color: white;
  21. opacity: 0.8;
  22. text-align: center;
  23. font-family: verdana;
  24. font-size: 20px;
  25. padding: 25px;
  26. background-color: #546c97;
  27. width: 100%;
  28. border: none;
  29. border-radius: 10px;
  30. margin-bottom: 10px;
  31. margin-top: 10px;
  32. -webkit-transition-duration: 0.4s;
  33. transition-duration: 0.4s;
  34. }
  35. .ahref:hover {
  36. opacity: 1;
  37. background-color: #546c97;
  38. text-decoration: none;
  39. }
  40.  
  41. .alert {
  42. padding: 20px;
  43. background-color: #5b97ff;
  44. color: white;
  45. font-family: verdana;
  46. }
  47. .closebtn {
  48. margin-left: 15px;
  49. color: white;
  50. font-weight: bold;
  51. float: right;
  52. font-size: 22px;
  53. line-height: 20px;
  54. cursor: pointer;
  55. transition: 0.3s;
  56. }
  57.  
  58. .closebtn:hover {
  59. color: black;
  60. }
  61. .thislink {
  62. text-decoration: none;
  63. color: #337ab7;
  64. }
  65. .thislink:hover {
  66. text-decoration: none;
  67. color: black;
  68. }
  69. .wrappernavbar {
  70. float: right;
  71. }
  72. </style>
  73. <title> Earn Coins - Rewardino</title>
  74. </head>
  75. <body>
  76. <?php
  77. include 'get_username.php';
  78. include 'loader.php';
  79. ?>
  80. <div class="container">
  81. <h2>Choose a way to earn Coins!</h2>
  82. <div class="alert">
  83. <span class="closebtn" onclick="this.parentElement.style.display='none';">&times;</span>
  84. <strong>Wait!</strong> Check out <a href="tutorials.php" class="thislink">this</a> guide for earning coins!
  85. </div>
  86. <div class="row">
  87. <div class="col-sm-12"><a class="ahref" href="offers.php">Complete Offers</a></div>
  88. </div>
  89. <div class="row">
  90. <div class="col-sm-12"><a class="ahref" href="surveys.php">Complete Surveys</a></div>
  91. </div>
  92. <div class="row">
  93. <div class="col-sm-12"><a class="ahref" href="videoads.php">Watch Video Ads</a></div>
  94. </div>
  95. <div class="row">
  96. <div class="col-sm-12">
  97. <div class="table-responsive">
  98. <table class="table table-hover">
  99. <thead>
  100. <tr>
  101. <th>Offer Name</th>
  102. <th>Date Completed</th>
  103. <th>Provider</th>
  104. <th>Amount</th>
  105. </tr>
  106. </thead>
  107. <tbody>
  108. </tbody>
  109. </table>
  110. </div>
  111. </div>
  112. </div><br><br><br><br><br><br>
  113. <!------------------------------------------Google Ads on the bottom ---------------------------------->
  114. <br><br><br>
  115. </div>
  116. <?php
  117. include 'navbar.php';
  118. ?>
  119. </body>
  120. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement