-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
91 lines (85 loc) · 2.94 KB
/
index.html
File metadata and controls
91 lines (85 loc) · 2.94 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
<!DOCTYPE html>
<html lang="ar" dir="rtl">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>قالب خطة درس</title>
<link rel="stylesheet" href="./style/styleit.css" />
<script src="https://cdn.tailwindcss.com"></script>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link
href="https://fonts.googleapis.com/css2?family=Lateef"
rel="stylesheet"
/>
</head>
<body
style="font-family: 'Scheherazade New', serif"
onload="authenticate();"
class="bg-gray-100"
>
<header class="bg-white shadow-sm">
<div
class="container mx-auto px-6 py-4 flex justify-between items-center"
>
<div class="flex items-center">
<a href="./index.html">
<img
src="./assets/logo.png"
alt="Logo"
loading="lazy"
class="h-10 w-10 mr-3 border-2 border-gray-300 rounded-full"
/>
</a>
<h1 class="text-xl font-bold text-gray-900">
<a href="./index.html"> مخطط الدرس </a>
</h1>
</div>
<span class="text-lg text-gray-700"
>أهلا و سهلا يا <span id="user" class="font-bold text-blue-600"></span
></span>
</div>
</header>
<div>
<h2 class="text-2xl font-bold text-gray-900 mb-2 text-center">
<a
href="https://github.com/atomic-ustadh/Lesson-Plan/blob/updateLogic/README.md"
target="_blank"
>Before Use: Read the guide on how to use this lesson plan tool
here</a
>
</h2>
</div>
<main class="container mx-auto px-6 py-12">
<div class="text-center mb-10">
<h2 class="text-4xl font-bold text-gray-900 mb-2">المواد</h2>
<p class="text-gray-700">اختر مادة أدناه لبدء إنشاء خطة الدرس.</p>
</div>
<div
id="button-container"
class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6"
></div>
<div class="text-center mt-5">
<h2 class="text-4xl font-bold text-gray-900 mb-3">أو</h2>
<p class="text-gray-700">ابدأ من جديددددددد</p>
<button
onclick="location.href='./pages/new_template/new_template.html'"
class="bg-indigo-600 hover:bg-indigo-800 text-white mt-7 py-3 px-6 rounded-lg shadow-md hover:bg-blue-950 transition duration-300"
>
ابدأ من جديد →
</button>
</div>
</main>
<footer class="bg-white mt-5 py-6">
<div class="container mx-auto px-6 text-center text-gray-700">
<p>
جميع الحقوق محفوظة
<a href="https://atomicustadh.pages.dev/" target="_blank"
>AtomicUstadh</a
>
© 2025
</p>
</div>
</footer>
<script src="./script/select-sub.js"></script>
</body>
</html>