itamarlifshitz commited on
Commit
9882ee8
·
verified ·
1 Parent(s): 7fa209a

make an working site that if i click on any thing it will work

Browse files
Files changed (9) hide show
  1. about.html +45 -0
  2. announcements.html +42 -0
  3. chat.html +36 -0
  4. contact.html +49 -0
  5. login.html +37 -0
  6. materials.html +47 -0
  7. privacy.html +35 -0
  8. register.html +45 -0
  9. style.css +190 -2
about.html ADDED
@@ -0,0 +1,45 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="he" dir="rtl">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>אודות - SmartStudy BuddyHub</title>
7
+ <link rel="stylesheet" href="style.css">
8
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
9
+ </head>
10
+ <body>
11
+ <custom-navbar></custom-navbar>
12
+
13
+ <main class="container">
14
+ <section class="about-section">
15
+ <h1>אודות SmartStudy BuddyHub</h1>
16
+ <div class="about-content">
17
+ <p>SmartStudy BuddyHub הוא פלטפורמה חכמה שפותחה עבור תלמידי בית ספר יצחק שמיר, המספקת כלים מתקדמים ללמידה מקוונת וניהול חומרי לימוד.</p>
18
+
19
+ <h2>המטרה שלנו</h2>
20
+ <p>אנו שואפים להפוך את חווית הלמידה לאינטראקטיבית, נגישה ויעילה יותר באמצעות שימוש בטכנולוגיות מתקדמות.</p>
21
+
22
+ <h2>הצוות</h2>
23
+ <div class="team-grid">
24
+ <div class="team-member">
25
+ <img src="http://static.photos/people/200x200/1" alt="תמונה של מורה">
26
+ <h3>דני כהן</h3>
27
+ <p>מורה למתמטיקה</p>
28
+ </div>
29
+ <div class="team-member">
30
+ <img src="http://static.photos/people/200x200/2" alt="תמונה של מורה">
31
+ <h3>שירי לוי</h3>
32
+ <p>מורה למדעים</p>
33
+ </div>
34
+ </div>
35
+ </div>
36
+ </section>
37
+ </main>
38
+
39
+ <custom-footer></custom-footer>
40
+
41
+ <script src="components/navbar.js"></script>
42
+ <script src="components/footer.js"></script>
43
+ <script src="script.js"></script>
44
+ </body>
45
+ </html>
announcements.html ADDED
@@ -0,0 +1,42 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="he" dir="rtl">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>הכרזות - SmartStudy BuddyHub</title>
7
+ <link rel="stylesheet" href="style.css">
8
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
9
+ </head>
10
+ <body>
11
+ <custom-navbar></custom-navbar>
12
+
13
+ <main class="container">
14
+ <section class="announcements-section">
15
+ <h1>הכרזות בית ספר</h1>
16
+ <div class="announcements-list">
17
+ <div class="announcement-card">
18
+ <h3>טיול שנתי - כיתות י'</h3>
19
+ <p class="date">15.10.2023</p>
20
+ <p>הטיול השנתי לכיתות י' יתקיים בתאריך 25-27 באוקטובר. יש להביא טופס הרשאה חתום עד יום רביעי הקרוב.</p>
21
+ </div>
22
+ <div class="announcement-card">
23
+ <h3>שינויים במערכת</h3>
24
+ <p class="date">10.10.2023</p>
25
+ <p>שינויים במערכת השעות יחולו החל מיום ראשון הבא. המערכת המעודכנת תוצג בלוח המודעות.</p>
26
+ </div>
27
+ <div class="announcement-card">
28
+ <h3>יום הורים</h3>
29
+ <p class="date">05.10.2023</p>
30
+ <p>יום הורים יתקיים ביום שלישי הקרוב בין השעות 16:00-19:00. יש להירשם מראש דרך האתר.</p>
31
+ </div>
32
+ </div>
33
+ </section>
34
+ </main>
35
+
36
+ <custom-footer></custom-footer>
37
+
38
+ <script src="components/navbar.js"></script>
39
+ <script src="components/footer.js"></script>
40
+ <script src="script.js"></script>
41
+ </body>
42
+ </html>
chat.html ADDED
@@ -0,0 +1,36 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="he" dir="rtl">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>צ'אט AI - SmartStudy BuddyHub</title>
7
+ <link rel="stylesheet" href="style.css">
8
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
9
+ </head>
10
+ <body>
11
+ <custom-navbar></custom-navbar>
12
+
13
+ <main class="container">
14
+ <section class="chat-container">
15
+ <h1>צ'אט AI</h1>
16
+ <div class="chat-box">
17
+ <div class="messages">
18
+ <div class="message bot">
19
+ <p>שלום! אני העוזר הלימודי החכם. איך אני יכול לעזור לך היום?</p>
20
+ </div>
21
+ </div>
22
+ <div class="input-area">
23
+ <input type="text" placeholder="כתוב את שאלתך כאן...">
24
+ <button class="btn primary"><i class="fas fa-paper-plane"></i></button>
25
+ </div>
26
+ </div>
27
+ </section>
28
+ </main>
29
+
30
+ <custom-footer></custom-footer>
31
+
32
+ <script src="components/navbar.js"></script>
33
+ <script src="components/footer.js"></script>
34
+ <script src="script.js"></script>
35
+ </body>
36
+ </html>
contact.html ADDED
@@ -0,0 +1,49 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="he" dir="rtl">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>צור קשר - SmartStudy BuddyHub</title>
7
+ <link rel="stylesheet" href="style.css">
8
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
9
+ </head>
10
+ <body>
11
+ <custom-navbar></custom-navbar>
12
+
13
+ <main class="container">
14
+ <section class="contact-section">
15
+ <h1>צור קשר</h1>
16
+ <div class="contact-content">
17
+ <div class="contact-info">
18
+ <h2>פרטי יצירת קשר</h2>
19
+ <p><i class="fas fa-map-marker-alt"></i> רחוב הדקל 15, תל אביב</p>
20
+ <p><i class="fas fa-phone"></i> 03-1234567</p>
21
+ <p><i class="fas fa-envelope"></i> [email protected]</p>
22
+ </div>
23
+
24
+ <form class="contact-form">
25
+ <div class="form-group">
26
+ <label for="name">שם מלא</label>
27
+ <input type="text" id="name" required>
28
+ </div>
29
+ <div class="form-group">
30
+ <label for="email">אימייל</label>
31
+ <input type="email" id="email" required>
32
+ </div>
33
+ <div class="form-group">
34
+ <label for="message">הודעה</label>
35
+ <textarea id="message" rows="5" required></textarea>
36
+ </div>
37
+ <button type="submit" class="btn primary">שלח הודעה</button>
38
+ </form>
39
+ </div>
40
+ </section>
41
+ </main>
42
+
43
+ <custom-footer></custom-footer>
44
+
45
+ <script src="components/navbar.js"></script>
46
+ <script src="components/footer.js"></script>
47
+ <script src="script.js"></script>
48
+ </body>
49
+ </html>
login.html ADDED
@@ -0,0 +1,37 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="he" dir="rtl">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>התחברות - SmartStudy BuddyHub</title>
7
+ <link rel="stylesheet" href="style.css">
8
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
9
+ </head>
10
+ <body>
11
+ <custom-navbar></custom-navbar>
12
+
13
+ <main class="container">
14
+ <section class="auth-form">
15
+ <h1>התחברות</h1>
16
+ <form>
17
+ <div class="form-group">
18
+ <label for="email">אימייל</label>
19
+ <input type="email" id="email" required>
20
+ </div>
21
+ <div class="form-group">
22
+ <label for="password">סיסמה</label>
23
+ <input type="password" id="password" required>
24
+ </div>
25
+ <button type="submit" class="btn primary">התחבר</button>
26
+ </form>
27
+ <p>אין לך חשבון? <a href="/register.html">הירשם עכשיו</a></p>
28
+ </section>
29
+ </main>
30
+
31
+ <custom-footer></custom-footer>
32
+
33
+ <script src="components/navbar.js"></script>
34
+ <script src="components/footer.js"></script>
35
+ <script src="script.js"></script>
36
+ </body>
37
+ </html>
materials.html ADDED
@@ -0,0 +1,47 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="he" dir="rtl">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>חומרי לימוד - SmartStudy BuddyHub</title>
7
+ <link rel="stylesheet" href="style.css">
8
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
9
+ </head>
10
+ <body>
11
+ <custom-navbar></custom-navbar>
12
+
13
+ <main class="container">
14
+ <section class="materials-section">
15
+ <h1>חומרי לימוד</h1>
16
+ <div class="materials-grid">
17
+ <div class="material-card">
18
+ <i class="fas fa-book"></i>
19
+ <h3>מתמטיקה</h3>
20
+ <a href="#" class="btn secondary">צפה בחומרים</a>
21
+ </div>
22
+ <div class="material-card">
23
+ <i class="fas fa-flask"></i>
24
+ <h3>מדעים</h3>
25
+ <a href="#" class="btn secondary">צפה בחומרים</a>
26
+ </div>
27
+ <div class="material-card">
28
+ <i class="fas fa-language"></i>
29
+ <h3>אנגלית</h3>
30
+ <a href="#" class="btn secondary">צפה בחומרים</a>
31
+ </div>
32
+ <div class="material-card">
33
+ <i class="fas fa-landmark"></i>
34
+ <h3>היסטוריה</h3>
35
+ <a href="#" class="btn secondary">צפה בחומרים</a>
36
+ </div>
37
+ </div>
38
+ </section>
39
+ </main>
40
+
41
+ <custom-footer></custom-footer>
42
+
43
+ <script src="components/navbar.js"></script>
44
+ <script src="components/footer.js"></script>
45
+ <script src="script.js"></script>
46
+ </body>
47
+ </html>
privacy.html ADDED
@@ -0,0 +1,35 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="he" dir="rtl">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>פרטיות - SmartStudy BuddyHub</title>
7
+ <link rel="stylesheet" href="style.css">
8
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
9
+ </head>
10
+ <body>
11
+ <custom-navbar></custom-navbar>
12
+
13
+ <main class="container">
14
+ <section class="privacy-section">
15
+ <h1>מדיניות פרטיות</h1>
16
+ <div class="privacy-content">
17
+ <h2>איסוף מידע</h2>
18
+ <p>אנו אוספים מידע אישי רק כאשר אתה נרשם למערכת או פונה אלינו באמצעות טופס יצירת הקשר.</p>
19
+
20
+ <h2>שימוש במידע</h2>
21
+ <p>המידע שאתה מספק ישמש אך ורק לצורך מתן השירותים שהמערכת מציעה.</p>
22
+
23
+ <h2>אבטחת מידע</h2>
24
+ <p>אנו משתמשים באמצעי אבטחה מתקדמים כדי להגן על המידע האישי שלך.</p>
25
+ </div>
26
+ </section>
27
+ </main>
28
+
29
+ <custom-footer></custom-footer>
30
+
31
+ <script src="components/navbar.js"></script>
32
+ <script src="components/footer.js"></script>
33
+ <script src="script.js"></script>
34
+ </body>
35
+ </html>
register.html ADDED
@@ -0,0 +1,45 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="he" dir="rtl">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>הרשמה - SmartStudy BuddyHub</title>
7
+ <link rel="stylesheet" href="style.css">
8
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
9
+ </head>
10
+ <body>
11
+ <custom-navbar></custom-navbar>
12
+
13
+ <main class="container">
14
+ <section class="auth-form">
15
+ <h1>הרשמה</h1>
16
+ <form>
17
+ <div class="form-group">
18
+ <label for="name">שם מלא</label>
19
+ <input type="text" id="name" required>
20
+ </div>
21
+ <div class="form-group">
22
+ <label for="email">אימייל</label>
23
+ <input type="email" id="email" required>
24
+ </div>
25
+ <div class="form-group">
26
+ <label for="password">סיסמה</label>
27
+ <input type="password" id="password" required>
28
+ </div>
29
+ <div class="form-group">
30
+ <label for="confirm-password">אימות סיסמה</label>
31
+ <input type="password" id="confirm-password" required>
32
+ </div>
33
+ <button type="submit" class="btn primary">הרשם</button>
34
+ </form>
35
+ <p>כבר יש לך חשבון? <a href="/login.html">התחבר כאן</a></p>
36
+ </section>
37
+ </main>
38
+
39
+ <custom-footer></custom-footer>
40
+
41
+ <script src="components/navbar.js"></script>
42
+ <script src="components/footer.js"></script>
43
+ <script src="script.js"></script>
44
+ </body>
45
+ </html>
style.css CHANGED
@@ -96,8 +96,196 @@ body {
96
  color: var(--accent-color);
97
  margin-bottom: 20px;
98
  }
99
-
100
  .feature-card h3 {
101
  font-size: 1.5rem;
102
  margin-bottom: 15px;
103
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
96
  color: var(--accent-color);
97
  margin-bottom: 20px;
98
  }
 
99
  .feature-card h3 {
100
  font-size: 1.5rem;
101
  margin-bottom: 15px;
102
+ }
103
+
104
+ /* Authentication Forms */
105
+ .auth-form {
106
+ max-width: 500px;
107
+ margin: 0 auto;
108
+ background: white;
109
+ padding: 30px;
110
+ border-radius: 10px;
111
+ box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
112
+ }
113
+
114
+ .auth-form h1 {
115
+ text-align: center;
116
+ margin-bottom: 30px;
117
+ }
118
+
119
+ .form-group {
120
+ margin-bottom: 20px;
121
+ }
122
+
123
+ .form-group label {
124
+ display: block;
125
+ margin-bottom: 8px;
126
+ font-weight: bold;
127
+ }
128
+
129
+ .form-group input {
130
+ width: 100%;
131
+ padding: 12px;
132
+ border: 1px solid #ddd;
133
+ border-radius: 5px;
134
+ font-size: 1rem;
135
+ }
136
+
137
+ /* Chat Page */
138
+ .chat-container {
139
+ max-width: 800px;
140
+ margin: 0 auto;
141
+ }
142
+
143
+ .chat-box {
144
+ border: 1px solid #ddd;
145
+ border-radius: 10px;
146
+ overflow: hidden;
147
+ }
148
+
149
+ .messages {
150
+ height: 500px;
151
+ padding: 20px;
152
+ overflow-y: auto;
153
+ background: #f9f9f9;
154
+ }
155
+
156
+ .message {
157
+ margin-bottom: 15px;
158
+ padding: 10px 15px;
159
+ border-radius: 10px;
160
+ max-width: 70%;
161
+ }
162
+
163
+ .message.bot {
164
+ background: #e3f2fd;
165
+ margin-left: auto;
166
+ }
167
+
168
+ .message.user {
169
+ background: #bbdefb;
170
+ margin-right: auto;
171
+ }
172
+
173
+ .input-area {
174
+ display: flex;
175
+ padding: 15px;
176
+ background: white;
177
+ border-top: 1px solid #ddd;
178
+ }
179
+
180
+ .input-area input {
181
+ flex-grow: 1;
182
+ padding: 12px;
183
+ border: 1px solid #ddd;
184
+ border-radius: 5px 0 0 5px;
185
+ }
186
+
187
+ .input-area button {
188
+ border-radius: 0 5px 5px 0;
189
+ }
190
+
191
+ /* Materials Page */
192
+ .materials-grid {
193
+ display: grid;
194
+ grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
195
+ gap: 20px;
196
+ }
197
+
198
+ .material-card {
199
+ background: white;
200
+ padding: 30px;
201
+ border-radius: 10px;
202
+ box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
203
+ text-align: center;
204
+ }
205
+
206
+ .material-card i {
207
+ font-size: 2.5rem;
208
+ color: var(--accent-color);
209
+ margin-bottom: 15px;
210
+ }
211
+
212
+ /* Announcements Page */
213
+ .announcements-list {
214
+ max-width: 800px;
215
+ margin: 0 auto;
216
+ }
217
+
218
+ .announcement-card {
219
+ background: white;
220
+ padding: 20px;
221
+ border-radius: 10px;
222
+ box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
223
+ margin-bottom: 20px;
224
+ }
225
+
226
+ .announcement-card .date {
227
+ color: #666;
228
+ font-size: 0.9rem;
229
+ margin-bottom: 10px;
230
+ }
231
+
232
+ /* About Page */
233
+ .team-grid {
234
+ display: grid;
235
+ grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
236
+ gap: 30px;
237
+ margin-top: 30px;
238
+ }
239
+
240
+ .team-member {
241
+ text-align: center;
242
+ }
243
+
244
+ .team-member img {
245
+ width: 100%;
246
+ height: auto;
247
+ border-radius: 50%;
248
+ margin-bottom: 15px;
249
+ }
250
+
251
+ /* Contact Page */
252
+ .contact-content {
253
+ display: grid;
254
+ grid-template-columns: 1fr 2fr;
255
+ gap: 40px;
256
+ }
257
+
258
+ .contact-info {
259
+ background: white;
260
+ padding: 30px;
261
+ border-radius: 10px;
262
+ box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
263
+ }
264
+
265
+ .contact-info i {
266
+ margin-left: 10px;
267
+ color: var(--accent-color);
268
+ }
269
+
270
+ .contact-form {
271
+ background: white;
272
+ padding: 30px;
273
+ border-radius: 10px;
274
+ box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
275
+ }
276
+
277
+ .contact-form textarea {
278
+ width: 100%;
279
+ padding: 12px;
280
+ border: 1px solid #ddd;
281
+ border-radius: 5px;
282
+ font-size: 1rem;
283
+ font-family: inherit;
284
+ }
285
+
286
+ /* Responsive Adjustments */
287
+ @media (max-width: 768px) {
288
+ .contact-content {
289
+ grid-template-columns: 1fr;
290
+ }
291
+ }