-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
89 lines (78 loc) · 3.4 KB
/
index.html
File metadata and controls
89 lines (78 loc) · 3.4 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CS Practical Questions - Home</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- Theme Toggle Button -->
<button class="theme-toggle" onclick="toggleTheme()" title="Toggle Dark/Light Mode">🌙</button>
<main class="home-container">
<h1>CS Practical Questions</h1>
<div class="subtitle">Select a topic to view questions</div>
<div class="nav-buttons">
<a href="python.html" class="nav-btn">Python</a>
<a href="mysql.html" class="nav-btn">MySQL</a>
</div>
<div class="notice">
⚠️ No one is perfect, so some solutions may be wrong.
</div>
<div class="updates-section">
<h3>Important Notice</h3>
<ul>
<li>You have to do one question from given 2 (Python 2 and 4)</li>
<li>MySQL question that will be ask in practical - Q 3,5,8,10</li>
</ul>
</div>
</main>
<footer>
<p>CS10 Laboratory</p>
<div class="report-section">
<button class="report-problem-btn" onclick="openReportModal()">Report Problem</button>
</div>
<div class="contact-section">
<span>Contact:</span>
<a href="https://discord.com/users/1302135024380022854" target="_blank">Discord</a>
<span class="separator">|</span>
<a href="https://t.me/NotMSameer" target="_blank">Telegram</a>
</div>
<div class="source-section">
<span>Source Code:</span>
<a href="https://github.com/MohammadSameer-Dev/CS10" target="_blank">GitHub</a>
</div>
<div class="llm-section">
<span>LLMs Used:</span> Claude Opus 4.5 Thinking <span class="separator">|</span> Gemini 3 Pro High
</div>
</footer>
<!-- Report Problem Modal -->
<div id="reportModal" class="modal-overlay">
<div class="modal-content">
<h3>Report Problem</h3>
<form id="reportForm" onsubmit="submitReport(event)">
<div class="form-group">
<label for="reportSubject">Subject</label>
<input type="text" id="reportSubject" name="subject" required
placeholder="Brief description of the issue">
</div>
<div class="form-group">
<label for="reportMessage">Message</label>
<textarea id="reportMessage" name="message" required
placeholder="Describe the problem in detail..."></textarea>
</div>
<div class="form-group">
<label for="reportImage">Attach Image (optional)</label>
<input type="file" id="reportImage" name="image" accept="image/*" class="file-input">
<small class="file-hint">Max 8MB. Supported: PNG, JPG, GIF</small>
</div>
<div class="modal-actions">
<button type="button" class="modal-btn cancel-btn" onclick="closeReportModal()">Cancel</button>
<button type="submit" class="modal-btn submit-btn" id="submitBtn">Submit</button>
</div>
</form>
</div>
</div>
<script src="script.js"></script>
</body>
</html>