Advertisement
kodiakexploits

Untitled

Mar 18th, 2025
8
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 8.73 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. <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
  7. <title>Classroom Dashboard</title>
  8. <style>
  9. body {
  10. font-family: Arial, sans-serif;
  11. margin: 0;
  12. padding: 0;
  13. background-color: #f0f2f5;
  14. }
  15.  
  16. header {
  17. background-color: #0044cc;
  18. color: white;
  19. padding: 10px 20px;
  20. display: flex;
  21. align-items: center;
  22. justify-content: space-between;
  23. }
  24.  
  25. header .tabs {
  26. display: flex;
  27. gap: 15px;
  28. }
  29.  
  30. header .tabs a {
  31. color: white;
  32. text-decoration: none;
  33. padding: 5px 10px;
  34. border-radius: 5px;
  35. }
  36.  
  37. header .tabs a:hover {
  38. background-color: #0033aa;
  39. }
  40.  
  41. main {
  42. padding: 20px;
  43. }
  44.  
  45. .class-card {
  46. background: #e0f7fa;
  47. border: 1px solid #b2ebf2;
  48. border-radius: 8px;
  49. box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  50. padding: 15px;
  51. margin: 10px 0;
  52. width: 200px;
  53. display: flex;
  54. flex-direction: column;
  55. align-items: center;
  56. justify-content: space-between;
  57. }
  58.  
  59. .class-card-content {
  60. text-align: center;
  61. font-size: 14px;
  62. }
  63.  
  64. .action-icons {
  65. display: flex;
  66. gap: 10px;
  67. justify-content: center;
  68. margin-top: 10px;
  69. }
  70.  
  71. .start-class-button {
  72. background-color: #28a745;
  73. color: white;
  74. border: none;
  75. padding: 8px 12px;
  76. border-radius: 5px;
  77. cursor: pointer;
  78. margin-top: 10px;
  79. font-size: 14px;
  80. }
  81.  
  82. .new-courses {
  83. color: #28a745;
  84. }
  85.  
  86. .extra-icons {
  87. display: none;
  88. gap: 10px;
  89. }
  90.  
  91. .extra-icons.active {
  92. display: flex;
  93. }
  94.  
  95. /* Modal Styles */
  96. .modal {
  97. display: none;
  98. position: fixed;
  99. top: 0;
  100. left: 0;
  101. width: 100%;
  102. height: 100%;
  103. background-color: rgba(0, 0, 0, 0.5);
  104. align-items: center;
  105. justify-content: center;
  106. }
  107.  
  108. .modal-content {
  109. background-color: white;
  110. padding: 20px;
  111. width: 350px;
  112. border-radius: 8px;
  113. position: relative;
  114. }
  115.  
  116. .modal-header {
  117. display: flex;
  118. justify-content: space-between;
  119. align-items: center;
  120. margin-bottom: 20px;
  121. }
  122.  
  123. .modal-header .close {
  124. cursor: pointer;
  125. font-size: 20px;
  126. }
  127.  
  128. .modal-header h2 {
  129. font-size: 16px;
  130. margin: 0;
  131. }
  132.  
  133. .modal-body {
  134. margin-bottom: 20px;
  135. }
  136.  
  137. .green-bar {
  138. background-color: #28a745;
  139. color: white;
  140. padding: 8px;
  141. border-radius: 5px;
  142. display: flex;
  143. align-items: center;
  144. margin-bottom: 15px;
  145. }
  146.  
  147. .green-bar .fas {
  148. margin-right: 10px;
  149. }
  150.  
  151. .clock-section {
  152. display: flex;
  153. gap: 10px;
  154. align-items: center;
  155. margin-bottom: 20px;
  156. }
  157.  
  158. .clock-section input {
  159. width: 50px;
  160. padding: 5px;
  161. }
  162.  
  163. .buttons-container {
  164. display: flex;
  165. gap: 10px;
  166. }
  167.  
  168. .start-btn {
  169. background-color: #28a745;
  170. color: white;
  171. border: none;
  172. padding: 10px 20px;
  173. border-radius: 5px;
  174. cursor: pointer;
  175. width: 100%;
  176. }
  177.  
  178. /* Class Tools Section */
  179. .class-tools {
  180. background-color: #0044cc;
  181. color: white;
  182. padding: 15px;
  183. margin-top: 20px;
  184. border-radius: 8px;
  185. }
  186.  
  187. .class-tools h3 {
  188. margin: 0;
  189. font-size: 18px;
  190. }
  191.  
  192. .tools-list {
  193. margin-top: 10px;
  194. }
  195.  
  196. .tools-list li {
  197. margin: 5px 0;
  198. }
  199. </style>
  200. </head>
  201. <body>
  202. <header>
  203. <h1>My Classes</h1>
  204. <div class="tabs">
  205. <a href="#">Home</a>
  206. <a href="#">Courses</a>
  207. <a href="#">Announcements</a>
  208. <a href="#">Profile</a>
  209. </div>
  210. <div>
  211. <button class="start-class-button" onclick="openModal()">Start Class</button>
  212. </div>
  213. </header>
  214.  
  215. <main>
  216. <h2>Classroom / Courses <span class="new-courses">NEW!</span></h2>
  217.  
  218. <div class="class-card">
  219. <div class="class-card-content">
  220. <h3>David Conner</h3>
  221. <p>Start class to see student activity...</p>
  222. <small><a href="#">Find out more</a></small>
  223. </div>
  224. <div class="action-icons">
  225. <i class="fas fa-video"></i>
  226. <i class="fas fa-user-graduate"></i>
  227. <i class="fas fa-comments"></i>
  228. </div>
  229. </div>
  230.  
  231. <div class="class-card">
  232. <div class="class-card-content">
  233. <h3>James Conner</h3>
  234. <p>Start class to see student activity...</p>
  235. <small><a href="#">Find out more</a></small>
  236. </div>
  237. <div class="action-icons">
  238. <i class="fas fa-video"></i>
  239. <i class="fas fa-user-graduate"></i>
  240. <i class="fas fa-comments"></i>
  241. </div>
  242. </div>
  243.  
  244. <!-- Class Tools Section -->
  245. <div class="class-tools">
  246. <h3>Class Tools</h3>
  247. <ul class="tools-list">
  248. <li><i class="fas fa-pencil-alt"></i> Pause Internet</li>
  249. <li><i class="fas fa-users"></i> Manage Students</li>
  250. <li><i class="fas fa-chart-line"></i> View Screen</li>
  251. </ul>
  252. </div>
  253. </main>
  254.  
  255. <!-- Modal for Start Class Session -->
  256. <div class="modal" id="startClassModal">
  257. <div class="modal-content">
  258. <div class="modal-header">
  259. <h2>Start Class Session</h2>
  260. <span class="close" onclick="closeModal()">&times;</span>
  261. </div>
  262. <div class="modal-body">
  263. <div class="green-bar">
  264. <i class="fas fa-info-circle"></i>
  265. Please enter time in hh:mm format
  266. </div>
  267.  
  268. <div class="clock-section">
  269. <i class="fas fa-clock"></i>
  270. <label for="hour">Session ends at: </label>
  271. <input type="number" id="hour" placeholder="hh" min="1" max="12"> :
  272. <input type="number" id="minute" placeholder="mm" min="0" max="59">
  273. <div class="buttons-container">
  274. <button>AM</button>
  275. <button>PM</button>
  276. </div>
  277. </div>
  278. </div>
  279. <button class="start-btn" onclick="startClass()">Start</button>
  280. </div>
  281. </div>
  282.  
  283. <script>
  284. function openModal() {
  285. const modal = document.getElementById('startClassModal');
  286. modal.style.display = 'flex';
  287. }
  288.  
  289. function closeModal() {
  290. const modal = document.getElementById('startClassModal');
  291. modal.style.display = 'none';
  292. }
  293.  
  294. function startClass() {
  295. const hour = document.getElementById('hour').value;
  296. const minute = document.getElementById('minute').value;
  297. console.log(`Class starts at ${hour}:${minute}`);
  298. closeModal();
  299. }
  300. </script>
  301. </body>
  302. </html>
  303.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement