Advertisement
kodiakexploits

Untitled

Mar 18th, 2025
12
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 10.54 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. <title>My Classes</title>
  7. <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
  8. <style>
  9. body {
  10. font-family: Arial, sans-serif;
  11. margin: 0;
  12. padding: 0;
  13. background-color: #e9f2fa; /* Light background color */
  14. }
  15. header {
  16. background-color: #007bff; /* Header background color */
  17. color: white;
  18. display: flex;
  19. align-items: center;
  20. padding: 10px 20px;
  21. height: 60px;
  22. justify-content: space-between; /* Ensure space between logo and icons/buttons */
  23. }
  24. header img {
  25. height: 40px;
  26. margin-right: 20px;
  27. }
  28. .header-right {
  29. display: flex;
  30. align-items: center;
  31. }
  32. .header-right i {
  33. margin-right: 15px;
  34. cursor: pointer;
  35. }
  36. .header-right .button {
  37. background-color: #004085;
  38. color: white;
  39. border: none;
  40. border-radius: 5px;
  41. padding: 10px 15px;
  42. margin-left: 10px;
  43. cursor: pointer;
  44. }
  45. .container {
  46. padding: 20px;
  47. }
  48. .header-title {
  49. background-color: white;
  50. padding: 15px;
  51. margin: 0;
  52. border-radius: 5px;
  53. box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  54. display: flex;
  55. justify-content: space-between; /* Flexbox for alignment */
  56. align-items: center;
  57. }
  58. .top-buttons {
  59. display: flex;
  60. }
  61. .button {
  62. background-color: #007bff; /* Button color */
  63. color: white;
  64. border: none;
  65. border-radius: 5px;
  66. padding: 10px 15px;
  67. margin-left: 10px;
  68. cursor: pointer;
  69. }
  70. h2 {
  71. margin: 0;
  72. }
  73. .class-card {
  74. background-color: white;
  75. border-radius: 5px;
  76. box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  77. padding: 15px;
  78. margin-top: 20px;
  79. width: 300px; /* Updated width */
  80. transition: transform 0.3s ease, box-shadow 0.3s ease; /* Transition for smooth animation */
  81. }
  82. .class-card h3 {
  83. margin: 0;
  84. font-size: 18px; /* Updated font size */
  85. }
  86. .class-card p {
  87. margin: 5px 0;
  88. color: gray;
  89. }
  90. .class-actions {
  91. display: flex;
  92. justify-content: space-between; /* Space between class title and icon */
  93. align-items: center;
  94. }
  95. .class-actions i {
  96. cursor: pointer;
  97. }
  98. /* Hover effect for class card */
  99. .class-card:hover {
  100. transform: translateY(-5px); /* Moves the card up slightly */
  101. box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3); /* Adds a stronger shadow */
  102. }
  103. .class-card:hover::after {
  104. content: '';
  105. display: block;
  106. width: 100%;
  107. height: 2px;
  108. background-color: #007bff; /* Blue line under the card */
  109. margin-top: 10px;
  110. }
  111. /* Modal styles */
  112. .modal {
  113. position: fixed;
  114. top: 50%;
  115. left: 50%;
  116. transform: translate(-50%, -50%);
  117. background-color: white;
  118. border-radius: 5px;
  119. box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  120. z-index: 1000;
  121. display: none;
  122. width: 300px;
  123. }
  124. .modal-header {
  125. display: flex;
  126. justify-content: space-between;
  127. padding: 10px;
  128. background-color: #007bff;
  129. color: white;
  130. border-top-left-radius: 5px;
  131. border-top-right-radius: 5px;
  132. }
  133. .modal-body {
  134. padding: 20px;
  135. }
  136. .modal-body input {
  137. width: calc(100% - 10px);
  138. margin-bottom: 10px;
  139. padding: 5px;
  140. border: 1px solid #ddd;
  141. border-radius: 5px;
  142. }
  143. .modal-footer {
  144. text-align: right;
  145. padding: 10px;
  146. }
  147. .modal-footer .button {
  148. background-color: #007bff;
  149. color: white;
  150. border: none;
  151. border-radius: 5px;
  152. padding: 10px 15px;
  153. cursor: pointer;
  154. }
  155. /* Notification styles */
  156. .notification {
  157. position: fixed;
  158. top: 10px;
  159. left: 10px;
  160. background-color: #007bff;
  161. color: white;
  162. padding: 10px;
  163. border-radius: 5px;
  164. display: none;
  165. z-index: 9999;
  166. }
  167. </style>
  168. </head>
  169. <body>
  170.  
  171. <header>
  172. <img src="https://netasite.org/wp-content/uploads/2021/10/Asset-1.png" alt="Logo">
  173. <h1>My Classes</h1>
  174. <div class="header-right">
  175. <i class="fas fa-bell" title="Latest news"></i>
  176. <i class="fas fa-phone" title="Support"></i>
  177. <i class="fas fa-question-circle" title="Help"></i>
  178. <button class="button" id="send-feedback-btn"><i class="fas fa-comment-dots"></i> Send Feedback</button>
  179. </div>
  180. </header>
  181.  
  182. <div class="container">
  183. <div class="header-title">
  184. <h2>My Classes</h2>
  185. <div class="top-buttons">
  186. <button class="button" id="add-class-btn">Add Class</button>
  187. <button class="button">Combine Classes</button>
  188. </div>
  189. </div>
  190.  
  191. <div id="class-list"></div> <!-- Container for dynamic class cards -->
  192.  
  193. <div class="class-card">
  194. <div class="class-actions">
  195. <h3>Test Class</h3>
  196. <i class="fas fa-ellipsis-v"></i>
  197. </div>
  198. <p>2 students</p>
  199. <p>Local</p>
  200. </div>
  201. </div>
  202.  
  203. <!-- Modal for adding new class -->
  204. <div class="modal" id="add-class-modal">
  205. <div class="modal-header">
  206. <h3>Add a Class</h3>
  207. <span class="close" id="close-modal">&times;</span>
  208. </div>
  209. <div class="modal-body">
  210. <input type="text" id="class-name" placeholder="Class Name Here" />
  211. <input type="text" id="student-names" placeholder="Student FULL Names Here" />
  212. </div>
  213. <div class="modal-footer">
  214. <button class="button" id="add-class-submit">Add Class</button>
  215. </div>
  216. </div>
  217.  
  218. <!-- Feedback Modal -->
  219. <div class="modal" id="feedback-modal">
  220. <div class="modal-header">
  221. <h3><i class="fas fa-comment-alt"></i> Give us your feedback about Fuckwize</h3>
  222. <span class="close" id="close-feedback-modal">&times;</span>
  223. </div>
  224. <div class="modal-body">
  225. <textarea id="feedback-text" placeholder="Enter your feedback here..." rows="4" style="width: 100%;"></textarea>
  226. </div>
  227. <div class="modal-footer">
  228. <button class="button" id="send-feedback">Send Feedback</button>
  229. </div>
  230. </div>
  231.  
  232. <!-- Notification for feedback sent -->
  233. <div class="notification" id="feedback-notification">Sent feedback to Fuckwize!</div>
  234.  
  235. <script>
  236. // Get elements
  237. const addClassBtn = document.getElementById("add-class-btn");
  238. const addClassModal = document.getElementById("add-class-modal");
  239. const closeModalBtn = document.getElementById("close-modal");
  240. const addClassSubmitBtn = document.getElementById("add-class-submit");
  241. const classNameInput = document.getElementById("class-name");
  242. const studentNamesInput = document.getElementById("student-names");
  243. const classList = document.getElementById("class-list");
  244. const feedbackBtn = document.getElementById("send-feedback-btn");
  245. const feedbackModal = document.getElementById("feedback-modal");
  246. const closeFeedbackModal = document.getElementById("close-feedback-modal");
  247. const feedbackText = document.getElementById("feedback-text");
  248. const feedbackNotification = document.getElementById("feedback-notification");
  249.  
  250. // Show Add Class Modal
  251. addClassBtn.addEventListener("click", () => {
  252. addClassModal.style.display = "block";
  253. });
  254.  
  255. // Close Add Class Modal
  256. closeModalBtn.addEventListener("click", () => {
  257. addClassModal.style.display = "none";
  258. });
  259.  
  260. // Add Class
  261. addClassSubmitBtn.addEventListener("click", () => {
  262. const className = classNameInput.value;
  263. const studentNames = studentNamesInput.value;
  264.  
  265. if (className && studentNames) {
  266. const classCard = document.createElement("div");
  267. classCard.classList.add("class-card");
  268. classCard.innerHTML = `<div class="class-actions">
  269. <h3>${className}</h3>
  270. <i class="fas fa-ellipsis-v"></i>
  271. </div>
  272. <p>${studentNames.split(",").length} students</p>
  273. <p>Local</p>`;
  274. classList.appendChild(classCard);
  275. addClassModal.style.display = "none";
  276. classNameInput.value = "";
  277. studentNamesInput.value = "";
  278. }
  279. });
  280.  
  281. // Show Feedback Modal
  282. feedbackBtn.addEventListener("click", () => {
  283. feedbackModal.style.display = "block";
  284. });
  285.  
  286. // Close Feedback Modal
  287. closeFeedbackModal.addEventListener("click", () => {
  288. feedbackModal.style.display = "none";
  289. });
  290.  
  291. // Send Feedback
  292. document.getElementById("send-feedback").addEventListener("click", () => {
  293. const feedback = feedbackText.value;
  294. if (feedback) {
  295. feedbackNotification.style.display = "block";
  296. setTimeout(() => {
  297. feedbackNotification.style.display = "none";
  298. }, 3000);
  299. }
  300. feedbackText.value = "";
  301. feedbackModal.style.display = "none";
  302. });
  303. </script>
  304.  
  305. </body>
  306. </html>
  307.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement