-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathaccounting.html
More file actions
103 lines (101 loc) · 4.58 KB
/
accounting.html
File metadata and controls
103 lines (101 loc) · 4.58 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Solvr - Accounting</title>
<link rel="stylesheet" href="styles/economics-style.css">
<link rel="stylesheet" href="global-styles.css">
<link rel="icon" href="assets/favicon.svg" type="image/svg+xml">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&display=swap" rel="stylesheet">
<!-- 100% privacy-first analytics -->
<script data-collect-dnt="true" async src="https://scripts.simpleanalyticscdn.com/latest.js"></script>
<noscript><img src="https://queue.simpleanalyticscdn.com/noscript.gif?collect-dnt=true" alt="" referrerpolicy="no-referrer-when-downgrade"/></noscript>
</head>
<body>
<!-- <div class="loader-overlay" id="loaderOverlay">
<img src="loader.svg" class="loader-img" alt="Loading..."/>
<div class="loader-text">Loading...</div>
</div> -->
<nav class="navbar">
<img src="assets/logo.svg" class="logo-img" alt="Logo">
<a href="index.html" class="logo-text">Solvr.</a>
<a href="statistics.html">Statistics</a>
</nav>
<main class="container">
<h1>Cambridge IGCSE Accounting</h1>
<p>Select the parameters for your MCQs:</p>
<div class="section">
<h2>Year</h2>
<div class="button-group" id="year-group">
<button class="option-btn year-btn" data-year="2023">2023</button>
<button class="option-btn year-btn" data-year="2024">2024</button>
<button class="option-btn disabled" disabled data-year="2025">2025</button>
</div>
</div>
<div class="section">
<h2>Month</h2>
<div class="button-group" id="month-group">
<button class="option-btn month-btn" data-month="m" data-name="Feb/March">Feb/March</button>
<button class="option-btn month-btn" data-month="s" data-name="May/June">May/June</button>
<button class="option-btn month-btn" data-month="w" data-name="Oct/Nov">Oct/Nov</button>
</div>
</div>
<div class="section">
<h2>Level</h2>
<div class="button-group" id="level-group">
<button class="option-btn disabled" disabled>Core</button>
<button class="option-btn level-btn selected" data-level="Extended">Extended</button>
</div>
</div>
<div class="section">
<h2>Variant</h2>
<div class="button-group" id="variant-group">
<button class="option-btn variant-btn" data-variant="1">1</button>
<button class="option-btn variant-btn" data-variant="2">2</button>
<button class="option-btn variant-btn" data-variant="3">3</button>
</div>
</div>
<button class="submit-btn" id="start-btn">Start</button>
</main>
<footer class="footer">
<p>Built with <span class="heart">❤️</span> by <a href="https://github.com/arnavravinder" target="_blank" rel="noopener" style="color:#76ABAE;">Arnav</a></p>
</footer>
<div class="popup-overlay" id="popupOverlay">
<div class="popup-content">
<h3>Incomplete Selection</h3>
<p>Please complete all fields before starting.</p>
<button class="close-popup" id="closePopupBtn">Okay</button>
</div>
</div>
<!--
<script>
document.addEventListener('DOMContentLoaded', () => {
setTimeout(() => {
const loader = document.getElementById('loaderOverlay');
if (loader) {
loader.remove(); // Completely remove the loader from the DOM
}
}, 500);
});
</script>
-->
<script type="module">
// import { initializeApp } from 'https://www.gstatic.com/firebasejs/11.0.2/firebase-app.js';
// import { getAnalytics } from 'https://www.gstatic.com/firebasejs/11.0.2/firebase-analytics.js';
// const firebaseConfig = {
// apiKey: import.meta.env.VITE_FIREBASE_API_KEY,
// authDomain: import.meta.env.VITE_FIREBASE_AUTH_DOMAIN,
// projectId: import.meta.env.VITE_FIREBASE_PROJECT_ID,
// storageBucket: import.meta.env.VITE_FIREBASE_STORAGE_BUCKET,
// messagingSenderId: import.meta.env.VITE_FIREBASE_MESSAGING_SENDER_ID,
// appId: import.meta.env.VITE_FIREBASE_APP_ID,
// measurementId: import.meta.env.VITE_FIREBASE_MEASUREMENT_ID
// };
// const app = initializeApp(firebaseConfig);
// const analytics = getAnalytics(app);
</script>
<script src="scripts/accounting-script.js"></script>
</body>
</html>