-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreadiness-check.html
More file actions
168 lines (154 loc) · 6.73 KB
/
readiness-check.html
File metadata and controls
168 lines (154 loc) · 6.73 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Course Match - Readiness Check</title>
<style>
/* --- GLOBAL RESETS & BASE STYLES --- */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
min-height: 100vh;
padding: 20px;
color: #333;
}
/* --- CONTAINERS --- */
.main-container {
max-width: 800px;
margin: 0 auto;
background: white;
border-radius: 20px;
box-shadow: 0 20px 60px rgba(0,0,0,0.3);
overflow: hidden;
animation: fadeIn 0.5s ease;
}
@keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
/* --- COMMON ELEMENTS --- */
header {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
padding: 50px 40px;
text-align: center;
}
h1 { font-size: 2.5em; margin-bottom: 15px; text-shadow: 0 2px 10px rgba(0,0,0,0.2); }
.subtitle { font-size: 1.3em; opacity: 0.95; line-height: 1.5; }
.content-body { padding: 50px 40px; }
/* --- INFO BOXES --- */
.info-box { padding: 20px 25px; border-radius: 12px; margin-bottom: 25px; line-height: 1.6; }
.info-box h3 { margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
.alert-box { background: #fff3cd; border-left: 5px solid #ffc107; color: #856404; }
/* --- TROUBLESHOOTING --- */
.troubleshooting-steps { background: #f8f9fa; border-radius: 15px; padding: 30px; margin: 30px 0; }
.step-item { display: flex; gap: 20px; margin-bottom: 20px; align-items: start; }
.step-badge {
background: #667eea; color: white; width: 35px; height: 35px;
border-radius: 50%; display: flex; align-items: center;
justify-content: center; font-weight: bold; flex-shrink: 0;
}
.step-text { flex: 1; padding-top: 5px; line-height: 1.6; }
.readiness-check {
background: #e9ecef; padding: 20px; border-radius: 12px;
font-weight: bold; display: flex; align-items: center; gap: 15px;
cursor: pointer; border: 2px solid #dee2e6; transition: all 0.3s;
}
.readiness-check:hover { border-color: #667eea; background: #fff; }
.readiness-check input { width: 20px; height: 20px; }
/* --- NAVIGATION --- */
.nav-container {
display: flex;
justify-content: center;
gap: 20px;
margin-top: 40px;
padding-top: 30px;
border-top: 2px solid #eee;
}
.nav-btn {
padding: 15px 40px;
font-size: 1.2em;
font-weight: bold;
border-radius: 12px;
cursor: pointer;
border: none;
transition: all 0.3s;
color: white;
background: #667eea;
box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
text-decoration: none;
display: inline-block;
}
.nav-btn:hover:not(:disabled) {
transform: translateY(-3px);
box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}
.nav-btn:disabled {
background: #ccc;
cursor: not-allowed;
opacity: 0.7;
box-shadow: none;
}
/* --- RESPONSIVE --- */
@media (max-width: 768px) {
.content-body, header { padding: 30px 20px; }
h1 { font-size: 2em; }
}
</style>
</head>
<body>
<div class="main-container">
<header>
<h1>🎓 Mastering Cognomos</h1>
<p class="subtitle">Technical Readiness Check</p>
</header>
<div class="content-body">
<div class="info-box alert-box">
<h3>🚧 Stop & Check Access</h3>
<p>Before learning <em>how</em> to rank, you must ensure you <em>can</em> rank. If the live system is active, please verify your access now. If you cannot see courses, the tutorial will not be helpful.</p>
</div>
<div class="troubleshooting-steps">
<h3 style="margin-bottom: 20px; color: #444;">Troubleshooting Connection Issues:</h3>
<div class="step-item">
<div class="step-badge">1</div>
<div class="step-text">Switch to <strong>Incognito/Private</strong> mode in your browser.</div>
</div>
<div class="step-item">
<div class="step-badge">2</div>
<div class="step-text">Try a different network (e.g., disconnect from WiFi and use mobile data temporarily to test).</div>
</div>
<div class="step-item">
<div class="step-badge">3</div>
<div class="step-text">Ensure you are using the official link below.</div>
</div>
</div>
<div style="text-align: center; margin: 30px 0;">
<a href="https://coursematch.gsb.columbia.edu" target="_blank" style="background: #f0f4ff; padding: 15px 30px; border-radius: 30px; color: #667eea; text-decoration: none; font-weight: bold; display: inline-block; border: 2px solid #667eea;">
🔗 Open Course Match in New Tab
</a>
</div>
<label class="readiness-check">
<input type="checkbox" id="readinessCheckbox">
<span>I have verified that I can access Course Match and see the course list.</span>
</label>
<div class="nav-container">
<a id="startTutorialBtn" class="nav-btn" href="tutorial.html" style="pointer-events: none; opacity: 0.7;">
Continue to Tutorial →
</a>
</div>
</div>
</div>
<script>
const readinessCheckbox = document.getElementById('readinessCheckbox');
const startTutorialBtn = document.getElementById('startTutorialBtn');
readinessCheckbox.addEventListener('change', (e) => {
if (e.target.checked) {
startTutorialBtn.style.pointerEvents = 'auto';
startTutorialBtn.style.opacity = '1';
} else {
startTutorialBtn.style.pointerEvents = 'none';
startTutorialBtn.style.opacity = '0.7';
}
});
</script>
</body>
</html>