Advertisement
Guest User

Untitled

a guest
May 25th, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.64 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <meta http-equiv="X-UA-Compatible" content="ie=edge">
  7. <link rel="stylesheet" href="style.css">
  8. <link href="https://fonts.googleapis.com/css?family=Lato" rel="stylesheet">
  9. <script src="script.js"></script>
  10. <title>Walking Events</title>
  11. </head>
  12. <body>
  13. <div id="content">
  14. <div id="header">
  15.  
  16. </div>
  17.  
  18.  
  19.  
  20. <div id="link-bar">
  21. <div id="head">
  22. <img id="logo-image" src="logo3.png" alt="">
  23. OU Running Club |</div>
  24. <div id="show-main-menu">
  25. <div id="menu1">
  26. <a href="main.html">Home</a>
  27. <a href="admin-main.html">Admin</a>
  28. </div>
  29. <div id="menu2">
  30. <a href="login.html">Login</a>
  31. <a href="register.html">Register</a>
  32. </div>
  33. </div>
  34. </div>
  35.  
  36.  
  37.  
  38. <div id=main>
  39. <div id="view-section" class="view-display-sections">
  40.  
  41. <div class="section-title">
  42. <div class="plus-button">+</div>
  43. <label for="view-show-menu" class="display-menu">
  44. View All Walking Events
  45. </label>
  46. </div>
  47.  
  48. <input id="view-show-menu" type="checkbox" value="button">
  49.  
  50.  
  51. <div id="view-display-content">
  52. Lorem ipsum dolor sit amet, consectetur adipisicing elit. Ad incidunt ipsum perspiciatis soluta, porro repudiandae impedit commodi ex iure quod suscipit laudantium aut culpa aliquam a quae aperiam, doloribus similique, deserunt placeat autem! Eveniet beatae, velit ex obcaecati porro corrupti veritatis ipsam delectus, dolor, perspiciatis quam a praesentium, cum dolore!
  53.  
  54. </div>
  55. </div>
  56.  
  57. <div id="add-section" class="add-display-sections">
  58.  
  59. <div class="section-title">
  60. <div class="plus-button">+</div>
  61. <label for="add-show-menu" class="display-menu">
  62. Add Walking Events
  63. </label>
  64. </div>
  65.  
  66. <input id="add-show-menu" type="checkbox" value="button">
  67.  
  68.  
  69. <div id="add-display-content">
  70. <form id="form" action="insert.php" method="post">
  71. <br>
  72. <input id="sessionID" type="text" name="sessionID" value="ABCDEF012345">
  73. <label>ID:</label>
  74. <input type="text" name="id" value="">
  75. <br><br>
  76. <label>Walk name:</label>
  77. <input type="text" name="walkname" value="">
  78. <br><br>
  79. <label>Date:</label>
  80. <input type="text" name="date" value="">
  81. <br><br>
  82. <label>Start time:</label>
  83. <input type="text" name="starttime" value="">
  84. <br><br>
  85. <label>Leader:</label>
  86. <input type="text" name="leader" value="">
  87. <br><br>
  88. <label>Meeting point:</label>
  89. <input type="text" name="meetingpoint" value="">
  90. <br><br>
  91. <label>Meeting Co-ordinates:</label>
  92. <input type="text" name="meetinglatlong" value="">
  93. <br><br>
  94. <label>Distance (miles):</label>
  95. <input type="text" name="distance" value="">
  96. <br><br>
  97. <label>Route:</label>
  98. <input type="text" name="route" value="">
  99. <br><br>
  100. <label>Notes:</label>
  101. <input type="text" name="notes" value="">
  102. <br><br>
  103. <label>Status:</label>
  104. <input type="text" name="status" value="">
  105. <br><br>
  106. <input class="submit" type="submit" value="Submit">
  107. </form>
  108. </div>
  109. </div>
  110. </div>
  111. </div>
  112.  
  113. <footer>
  114. <img id="social-media" src="social-media.png" alt="">
  115. </footer>
  116. </body>
  117.  
  118. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement