Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8" />
- <meta name="viewport" content="width=device-width, initial-scale=1.0" />
- <title>Violation Details</title>
- <style>
- * {
- margin: 0;
- padding: 0;
- box-sizing: border-box;
- font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
- }
- body {
- background-color: #f5f5f5;
- color: #333;
- line-height: 1.6;
- padding: 20px;
- }
- .container {
- max-width: 1000px;
- margin: 0 auto;
- background: white;
- border-radius: 8px;
- box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
- overflow: hidden;
- }
- .header {
- background: #3a56a7;
- color: white;
- padding: 20px;
- text-align: center;
- }
- .header h1 {
- font-size: 24px;
- margin-bottom: 5px;
- }
- .section {
- padding: 20px;
- border-bottom: 1px solid #eee;
- }
- .section-title {
- font-size: 18px;
- color: #3a56a7;
- margin-bottom: 15px;
- padding-bottom: 5px;
- border-bottom: 2px solid #3a56a7;
- }
- .info-group {
- margin-bottom: 15px;
- }
- .info-label {
- font-weight: bold;
- margin-bottom: 5px;
- color: #555;
- }
- .info-value {
- background: #f9f9f9;
- padding: 10px;
- border-radius: 4px;
- border-left: 3px solid #3a56a7;
- }
- .info-text {
- white-space: pre-wrap;
- line-height: 1.5;
- }
- .badge {
- display: inline-block;
- padding: 5px 10px;
- border-radius: 4px;
- font-size: 14px;
- font-weight: bold;
- color: white;
- }
- .badge-danger {
- background-color: #e74c3c;
- }
- .badge-success {
- background-color: #27ae60;
- }
- .session-box {
- background: #f9f9f9;
- border-radius: 4px;
- padding: 15px;
- margin-bottom: 15px;
- border-left: 3px solid #3a56a7;
- }
- .session-date {
- font-size: 14px;
- color: #777;
- margin-bottom: 10px;
- }
- .meta-info {
- display: flex;
- justify-content: space-between;
- margin-bottom: 15px;
- }
- .meta-item {
- font-size: 14px;
- color: #666;
- }
- .action-buttons {
- padding: 20px;
- text-align: right;
- }
- .btn {
- padding: 10px 20px;
- border: none;
- border-radius: 4px;
- cursor: pointer;
- font-weight: bold;
- margin-left: 10px;
- }
- .btn-primary {
- background: #3a56a7;
- color: white;
- }
- .btn-secondary {
- background: #f1f1f1;
- color: #333;
- }
- .btn-success {
- background: #27ae60;
- color: white;
- }
- .student-info {
- display: grid;
- grid-template-columns: 1fr 1fr;
- gap: 15px;
- }
- @media (max-width: 768px) {
- .student-info {
- grid-template-columns: 1fr;
- }
- }
- .student-header {
- display: flex;
- align-items: center;
- margin-bottom: 20px;
- }
- .student-name-section h2 {
- font-size: 20px;
- margin-bottom: 5px;
- }
- .student-id {
- font-size: 14px;
- color: #666;
- }
- .example-buttons {
- display: flex;
- justify-content: center;
- padding: 15px;
- background: #f9f9f9;
- border-bottom: 1px solid #eee;
- }
- .example-btn {
- padding: 8px 16px;
- margin: 0 10px;
- border: 2px solid #3a56a7;
- border-radius: 4px;
- background: white;
- color: #3a56a7;
- font-weight: bold;
- cursor: pointer;
- transition: all 0.3s ease;
- }
- .example-btn:hover,
- .example-btn.active {
- background: #3a56a7;
- color: white;
- }
- #example1,
- #example2 {
- display: none;
- }
- #example1.active,
- #example2.active {
- display: block;
- }
- @media print {
- .action-buttons,
- .example-buttons {
- display: none;
- }
- body {
- background: white;
- }
- .container {
- box-shadow: none;
- }
- }
- </style>
- </head>
- <body>
- <div class="container">
- <div class="header">
- <h1>Violation Details</h1>
- </div>
- <div class="example-buttons">
- <button class="example-btn active" onclick="showExample(1)">
- Example 1: Ongoing Violation
- </button>
- <button class="example-btn" onclick="showExample(2)">
- Example 2: Resolved Violation
- </button>
- </div>
- <!-- Example 1: Ongoing Violation -->
- <div id="example1" class="active">
- <div class="section">
- <h2 class="section-title">Student Information</h2>
- <div class="student-header">
- <div class="student-name-section">
- <h2>Juan Dela Cruz</h2>
- <div class="student-id">LRN: 123456789012</div>
- </div>
- </div>
- <div class="student-info">
- <div class="info-group">
- <div class="info-label">Grade & Section</div>
- <div class="info-value">Grade 10 - Einstein</div>
- </div>
- <div class="info-group">
- <div class="info-label">Sex</div>
- <div class="info-value">Male</div>
- </div>
- <div class="info-group">
- <div class="info-label">Age</div>
- <div class="info-value">16</div>
- </div>
- <div class="info-group">
- <div class="info-label">Contact Number</div>
- <div class="info-value">09123456789</div>
- </div>
- </div>
- </div>
- <div class="section">
- <div class="meta-info">
- <div class="meta-item">
- Date Recorded: <strong>April 1, 2025</strong>
- </div>
- <div class="meta-item">Status: <strong>Ongoing</strong></div>
- </div>
- <h2 class="section-title">Violation Information</h2>
- <div class="info-group">
- <div class="info-label">Violation Type</div>
- <div class="info-value">
- <span class="badge badge-danger">Bullying</span>
- </div>
- </div>
- <div class="info-group">
- <div class="info-label">Violation Description</div>
- <div class="info-value info-text">
- Student was involved in verbal bullying of another student during
- lunch break. Witnesses reported hearing derogatory comments and
- threats being made. This is the second reported incident this
- semester.
- </div>
- </div>
- </div>
- <div class="section">
- <h2 class="section-title">Incident Details</h2>
- <div class="info-group">
- <div class="info-label">Action Taken</div>
- <div class="info-value info-text">
- 1. Immediate intervention by supervising teacher. 2. Both students
- separated and brought to guidance office. 3. Parents of both
- students notified via phone call. 4. Initial counseling session
- conducted. 5. Incident documented and filed according to school
- policy.
- </div>
- </div>
- </div>
- <div class="section">
- <h2 class="section-title">Counseling Sessions</h2>
- <div class="session-box">
- <div class="session-date">Session Date: March 25, 2025</div>
- <div class="info-group">
- <div class="info-label">Session Summary</div>
- <div class="info-value info-text">
- Student expressed remorse for actions. Discussed underlying
- issues including academic pressure and family concerns. Student
- agreed to participate in weekly check-ins and anti-bullying
- program.
- </div>
- </div>
- <div class="info-group">
- <div class="info-label">Session Notes</div>
- <div class="info-value info-text">
- Student was initially resistant to discussing the incident but
- opened up after establishing rapport. Identified triggers for
- behavior and developed initial coping strategies. Recommended
- continued individual counseling and possible group intervention.
- </div>
- </div>
- </div>
- <div class="session-box">
- <div class="session-date">Session Date: April 1, 2025</div>
- <div class="info-group">
- <div class="info-label">Session Summary</div>
- <div class="info-value info-text">
- Follow-up session showed improvement in attitude. Student
- completed first worksheet on empathy building. Parents report
- improved behavior at home as well. Will continue with scheduled
- program.
- </div>
- </div>
- <div class="info-group">
- <div class="info-label">Session Notes</div>
- <div class="info-value info-text">
- Student demonstrated improved self-awareness and showed genuine
- interest in making amends. Discussed specific strategies for
- managing anger and frustration. Role-played appropriate
- responses to triggering situations. Next session will focus on
- conflict resolution skills.
- </div>
- </div>
- </div>
- </div>
- <div class="action-buttons">
- <button class="btn btn-primary">Resolve</button>
- <button class="btn btn-secondary">Close</button>
- </div>
- </div>
- <!-- Example 2: Resolved Violation -->
- <div id="example2">
- <div class="section">
- <h2 class="section-title">Student Information</h2>
- <div class="student-header">
- <div class="student-name-section">
- <h2>Maria Santos</h2>
- <div class="student-id">LRN: 987654321098</div>
- </div>
- </div>
- <div class="student-info">
- <div class="info-group">
- <div class="info-label">Grade & Section</div>
- <div class="info-value">Grade 9 - Newton</div>
- </div>
- <div class="info-group">
- <div class="info-label">Sex</div>
- <div class="info-value">Female</div>
- </div>
- <div class="info-group">
- <div class="info-label">Age</div>
- <div class="info-value">15</div>
- </div>
- <div class="info-group">
- <div class="info-label">Contact Number</div>
- <div class="info-value">09876543210</div>
- </div>
- </div>
- </div>
- <div class="section">
- <div class="meta-info">
- <div class="meta-item">
- Date Recorded: <strong>February 15, 2025</strong>
- </div>
- <div class="meta-item">Status: <strong>Resolved</strong></div>
- </div>
- <h2 class="section-title">Violation Information</h2>
- <div class="info-group">
- <div class="info-label">Violation Type</div>
- <div class="info-value">
- <span class="badge badge-success">Cutting Classes</span>
- </div>
- </div>
- <div class="info-group">
- <div class="info-label">Violation Description</div>
- <div class="info-value info-text">
- Student was found outside school premises during class hours
- without permission. This is the first recorded incident of this
- nature. Student admitted to leaving campus during mathematics
- class due to anxiety about an upcoming test.
- </div>
- </div>
- </div>
- <div class="section">
- <h2 class="section-title">Incident Details</h2>
- <div class="info-group">
- <div class="info-label">Action Taken</div>
- <div class="info-value info-text">
- 1. Student was escorted back to school by security personnel. 2.
- Parents were notified immediately. 3. Initial discussion with
- guidance counselor conducted. 4. Academic advisor consulted
- regarding math anxiety. 5. Student assigned to after-school
- detention for one week.
- </div>
- </div>
- </div>
- <div class="section">
- <h2 class="section-title">Counseling Sessions</h2>
- <div class="session-box">
- <div class="session-date">Session Date: February 16, 2025</div>
- <div class="info-group">
- <div class="info-label">Session Summary</div>
- <div class="info-value info-text">
- Initial session to discuss reasons behind cutting class. Student
- revealed significant math anxiety and pressure from parents to
- maintain high grades. Developed short-term coping strategies and
- communication plan with math teacher.
- </div>
- </div>
- <div class="info-group">
- <div class="info-label">Session Notes</div>
- <div class="info-value info-text">
- Student was cooperative and honest about her struggles. Shows
- signs of perfectionism and fear of failure. Recommended weekly
- check-ins with guidance office and potential math tutoring.
- Parents have been invited for a family conference to discuss
- academic expectations.
- </div>
- </div>
- </div>
- <div class="session-box">
- <div class="session-date">Session Date: March 2, 2025</div>
- <div class="info-group">
- <div class="info-label">Session Summary</div>
- <div class="info-value info-text">
- Follow-up session showed significant improvement. Student has
- attended all classes and implemented suggested coping
- strategies. Meeting with math teacher was productive, and
- accommodations were made for testing anxiety. Family meeting was
- successful with parents agreeing to adjust expectations.
- </div>
- </div>
- <div class="info-group">
- <div class="info-label">Session Notes</div>
- <div class="info-value info-text">
- Student demonstrated remarkable progress in just two weeks. Math
- teacher reports active participation in class. Parents have
- adjusted their approach, focusing on effort rather than just
- grades. Student will continue weekly tutoring but counseling can
- be reduced to monthly check-ins. Case can be considered resolved
- with monitoring.
- </div>
- </div>
- </div>
- <div class="session-box">
- <div class="session-date">Session Date: April 1, 2025</div>
- <div class="info-group">
- <div class="info-label">Session Summary</div>
- <div class="info-value info-text">
- Final check-in confirms sustained improvement. Student has not
- missed any classes for the past six weeks and reports decreased
- anxiety. Recent math test score showed improvement, and student
- used proper coping mechanisms before and during the test.
- </div>
- </div>
- <div class="info-group">
- <div class="info-label">Session Notes</div>
- <div class="info-value info-text">
- Violation case officially resolved. Student has shown consistent
- positive behavior and improved academic performance. Recommended
- continued use of stress management techniques but no further
- counseling sessions needed at this time. Student knows she can
- access guidance services if needed in the future.
- </div>
- </div>
- </div>
- </div>
- <div class="action-buttons">
- <button class="btn btn-success">Reopen</button>
- <button class="btn btn-secondary">Close</button>
- </div>
- </div>
- </div>
- <script>
- function showExample(exampleNum) {
- // Hide all examples
- document.getElementById("example1").classList.remove("active");
- document.getElementById("example2").classList.remove("active");
- // Show the selected example
- document.getElementById("example" + exampleNum).classList.add("active");
- // Update button styles
- const buttons = document.querySelectorAll(".example-btn");
- buttons.forEach((btn, index) => {
- if (index + 1 === exampleNum) {
- btn.classList.add("active");
- } else {
- btn.classList.remove("active");
- }
- });
- }
- </script>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement