Advertisement
Guest User

5char - current-keys HTML {UPDATED}

a guest
Feb 18th, 2020
307
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.68 KB | None | 0 0
  1.  
  2.  
  3. <!DOCTYPE html>
  4. <html>
  5. <head>
  6. <link rel="stylesheet" href="../activate.css">
  7. <link href="https://fonts.googleapis.com/css?family=Ubuntu" rel="stylesheet">
  8.  
  9. <link rel="stylesheet" href="path/to/font-awesome/css/font-awesome.min.css">
  10. <meta charset="UTF-8">
  11. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  12. <meta http-equiv="X-UA-Compatible" content="ie=edge">
  13. <title>Log In</title>
  14.  
  15. <meta name="viewport" content="width=device-width, initial-scale=1">
  16. <style>
  17. body, html {
  18. height: 100%;
  19. margin: 0;
  20. font: 400 15px/1.8 "Lato", sans-serif;
  21.  
  22. }
  23.  
  24. .w3-table,.w3-table-all{border-collapse:collapse;border-spacing:0;width:100%;display:table}.w3-table-all{border:1px solid #232323}
  25.  
  26. .w3-red {
  27. background-color: #f44336!important;}
  28.  
  29. .bgimg-1, .bgimg-2, .bgimg-3 {
  30. position: relative;
  31.  
  32. background-position: center;
  33. background-repeat: no-repeat;
  34. background-size: cover;
  35.  
  36. }
  37. .bgimg-1 {
  38. background-image: url("Editor3.gif");
  39. height: 100%;
  40. }
  41.  
  42.  
  43. </style>
  44. </head>
  45. <body>
  46.  
  47. <div class="bgimg-1">
  48.  
  49.  
  50. <br></br>
  51.  
  52.  
  53.  
  54.  
  55.  
  56. <div class="main">
  57. <input type="button" value="Go back!" onclick="history.back()">
  58. <body>
  59. <p class="sign" align="center">Current Keys</p>
  60. <table class="w3-table w3-striped w3-bordered">
  61. <tr class="w3-red">
  62. <th>Key</th>
  63. <th>Time</th>
  64. <th>Used?</th>
  65. </tr>
  66.  
  67. <form action="" method="post">
  68. <?php
  69. $result = $c_con->query("SELECT * FROM c_keys");
  70.  
  71. echo "<table>";
  72. while($c_row = $result->fetch_assoc()){
  73. echo $c_row["c_key"] . " " . $c_row["c_days"] . " " . $c_row["c_used"]; echo "<br>";
  74. }
  75. echo "</table>";
  76. ?>
  77. </table>
  78. </div>
  79. <body>
  80.  
  81. </form>
  82. </body>
  83. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement