Jatinoo1/Schoolsurveillance
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>School Surveillance System</title> <link rel="stylesheet" href="styles.css"> </head> <body>
<header> <h1>School Surveillance System</h1> </header>
<section class="login-box"> <h2>Admin Login</h2> <input id="username" type="text" placeholder="Username"> <input id="password" type="password" placeholder="Password"> <button onclick="login()">Login</button> <p id="login-message"></p> </section>
<section id="dashboard" class="hidden"> <h2>Dashboard</h2>
<div class="container">
<div class="card"> <h3>Live Camera Feed</h3> <video width="100%" controls autoplay muted> <source src="camera-sample.mp4" type="video/mp4"> </video> </div>
<div class="card"> <h3>Student Activity Logs</h3> <ul id="logs"></ul> </div>
<div class="card"
