68 lines
2.0 KiB
HTML
68 lines
2.0 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link rel="stylesheet" href="/static/styles.css">
|
|
<title>Faculty Admin</title>
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<h1>Faculty Admin</h1>
|
|
<nav>
|
|
<ul>
|
|
<li><a href="/faculty/login">Logout</a></li>
|
|
</ul>
|
|
</nav>
|
|
</header>
|
|
|
|
<main>
|
|
<h2>Welcome, Teacher</h2>
|
|
|
|
<div class="menu">
|
|
<a href="#profile">Edit Profile</a>
|
|
<a href="#attendance">Manage Attendance</a>
|
|
<!-- Add more menu items as needed -->
|
|
</div>
|
|
|
|
<section id="profile">
|
|
<h3>Edit Profile</h3>
|
|
<form>
|
|
<label for="name">Name:</label>
|
|
<input type="text" id="name" name="name" required>
|
|
|
|
<label for="email">Email:</label>
|
|
<input type="email" id="email" name="email" required>
|
|
|
|
<label for="phone">Phone:</label>
|
|
<input type="tel" id="phone" name="phone">
|
|
|
|
<button type="submit">Save Changes</button>
|
|
</form>
|
|
</section>
|
|
|
|
<section id="attendance">
|
|
<h3>Manage Student Attendance</h3>
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th>Student Name</th>
|
|
<th>Date</th>
|
|
<th>Status</th>
|
|
<th>Action</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<td>John Doe</td>
|
|
<td>2023-08-25</td>
|
|
<td>Present</td>
|
|
<td><a href="#">Mark Absent</a></td>
|
|
</tr>
|
|
<!-- Add more rows for each student -->
|
|
</tbody>
|
|
</table>
|
|
</section>
|
|
</main>
|
|
</body>
|
|
</html> |