forked from soghayarmahmoud/procode-edu-pulse-lms
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
52 lines (44 loc) · 2.67 KB
/
index.html
File metadata and controls
52 lines (44 loc) · 2.67 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
<!DOCTYPE html>
<html lang="en" data-theme="dark">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="ProCode EduPulse — A professional Learning Management System for coding education. Learn HTML, CSS, JavaScript, Linux, and C++ with interactive coding challenges, AI-powered hints, and progress tracking.">
<meta name="keywords" content="learn coding, HTML, CSS, JavaScript, Linux, C++, LMS, coding challenges, programming education">
<meta name="author" content="ProCode EduPulse">
<meta name="theme-color" content="#0F0F1A">
<meta property="og:title" content="ProCode EduPulse — Learn to Code, Build Real Projects">
<meta property="og:description" content="Transform from a YouTube viewer into a confident developer with structured courses, interactive challenges, and AI-powered hints.">
<meta property="og:type" content="website">
<meta property="og:url" content="https://soghayarmahmoud.github.io/procode-edu-pulse-lms/">
<title>ProCode EduPulse — Learn to Code | Interactive LMS</title>
<link rel="icon" type="image/png" href="./logo.png">
<!-- Font Awesome 6 -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<!-- Stylesheets -->
<link rel="stylesheet" href="./css/variables.css">
<link rel="stylesheet" href="./css/global.css">
<link rel="stylesheet" href="./css/components.css">
<link rel="stylesheet" href="./css/navbar.css">
<link rel="stylesheet" href="./css/landing.css">
<link rel="stylesheet" href="./css/lesson.css">
<link rel="stylesheet" href="./css/auth.css">
<link rel="stylesheet" href="./css/pages.css">
</head>
<body>
<!-- App Mount Point -->
<div id="app" class="page-wrapper">
<!-- Loading State -->
<div style="display:flex;align-items:center;justify-content:center;min-height:60vh;flex-direction:column;gap:16px">
<div style="width:40px;height:40px;border:3px solid var(--border-subtle);border-top-color:var(--brand-primary);border-radius:50%;animation:spin 0.8s linear infinite"></div>
<p style="color:var(--text-muted);font-size:14px">Loading ProCode EduPulse...</p>
</div>
</div>
<!-- Toast Container -->
<div id="toast-container" class="toast-container"></div>
<!-- Back to Top Button -->
<button id="back-to-top" class="back-to-top" title="Back to top"><i class="fa-solid fa-arrow-up"></i></button>
<!-- App Script -->
<script type="module" src="./js/app.js"></script>
</body>
</html>