-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
47 lines (37 loc) · 1.49 KB
/
Copy pathindex.html
File metadata and controls
47 lines (37 loc) · 1.49 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Daily Survey Form</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<img src="ChatGPT Image Apr 18, 2025, 10_17_17 AM.png" alt="Watermark" class="watermark">
<button class="toggle-darkmode" onclick="toggleDarkMode()">🌙 Toggle Dark Mode</button>
<div class="container">
<h1>Daily Academic Survey</h1>
<form id="survey-form">
<label for="date">Date</label>
<input type="date" name="date" id="date" required>
<label for="absentees-number">Number of Absentees</label>
<input type="number" name="absentees_number" id="absentees-number" required>
<label for="absentees-list">Absentees</label>
<textarea name="absentees_list" id="absentees-list" placeholder="List absentees..."></textarea>
<h2>Class Reports</h2>
<div id="class-container"></div>
<h2>Homework</h2>
<textarea name="homework" id="homework"></textarea>
<h2>Attachments (PDF)</h2>
<input type="file" name="attachments" id="attachments" accept="application/pdf">
<h2>Announcements</h2>
<textarea name="announcements" id="announcements"></textarea>
<h2>Remarks</h2>
<textarea name="remarks" id="remarks"></textarea>
<h2>Notices</h2>
<textarea name="notices" id="notices"></textarea>
<button type="submit">Submit</button>
</form>
</div>
<script src="script.js"></script>
</body>
</html>