Spaces:
Running
Running
Update reg.html
Browse files
reg.html
CHANGED
@@ -115,6 +115,13 @@
|
|
115 |
max-height: 400px;
|
116 |
overflow-y: auto;
|
117 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
118 |
/* تنسيق قسم إنشاء العقود */
|
119 |
.split-screen {
|
120 |
display: grid;
|
@@ -280,9 +287,9 @@
|
|
280 |
<i class="fas fa-project-diagram text-3xl mb-4 text-blue-600"></i>
|
281 |
<h3 class="text-xl font-bold text-gray-800 mb-3">خريطة التفكير</h3>
|
282 |
<p class="text-gray-600 mb-4">
|
283 |
-
|
284 |
</p>
|
285 |
-
<button class="action-button" onclick="showSection('mindMap')">إنشاء
|
286 |
</div>
|
287 |
</div>
|
288 |
<div class="feature-card p-6">
|
@@ -310,7 +317,7 @@
|
|
310 |
<i class="fas fa-language text-3xl mb-4 text-blue-600"></i>
|
311 |
<h3 class="text-xl font-bold text-gray-800 mb-3">الترجمة القانونية</h3>
|
312 |
<p class="text-gray-600 mb-4">
|
313 |
-
ترجمة احترافية للوثائق القانونية
|
314 |
</p>
|
315 |
<button class="action-button" onclick="showSection('translation')">ترجمة</button>
|
316 |
</div>
|
@@ -357,11 +364,14 @@
|
|
357 |
|
358 |
<!-- قسم خريطة التفكير القانونية -->
|
359 |
<section id="mindMap" class="section hidden">
|
360 |
-
<h2 class="text-3xl font-bold text-gray-800 mb-
|
|
|
|
|
|
|
361 |
<div class="input-group bg-white rounded p-6 shadow">
|
362 |
<textarea class="w-full p-3 border rounded" placeholder="اكتب وصف الموضوع الذي تريد إنشاء خريطة ذهنية له..."></textarea>
|
363 |
<button class="action-button mt-4" onclick="handleSubmit('mindMap')">إنشاء خريطة التفكير</button>
|
364 |
-
<div id="mindMapResult" class="mt-4 response-container"></div>
|
365 |
</div>
|
366 |
</section>
|
367 |
|
@@ -386,10 +396,20 @@
|
|
386 |
<select class="p-3 rounded border w-full" id="fromLang">
|
387 |
<option value="ar">العربية</option>
|
388 |
<option value="en">الإنجليزية</option>
|
|
|
|
|
|
|
|
|
|
|
389 |
</select>
|
390 |
<select class="p-3 rounded border w-full" id="toLang">
|
391 |
<option value="en">الإنجليزية</option>
|
392 |
<option value="ar">العربية</option>
|
|
|
|
|
|
|
|
|
|
|
393 |
</select>
|
394 |
</div>
|
395 |
<div class="flex gap-4">
|
@@ -517,7 +537,7 @@
|
|
517 |
case 'documents':
|
518 |
return 'قم بإنشاء مستند قانوني بناءً على الوصف التالي: ';
|
519 |
case 'mindMap':
|
520 |
-
return 'قم بإنشاء خريطة ذهنية
|
521 |
case 'search':
|
522 |
return 'ابحث عن معلومات قانونية حول: ';
|
523 |
case 'translation':
|
|
|
115 |
max-height: 400px;
|
116 |
overflow-y: auto;
|
117 |
}
|
118 |
+
/* تنسيق مميز لنتائج خريطة التفكير */
|
119 |
+
.mind-map-output {
|
120 |
+
background: #e0f7fa;
|
121 |
+
padding: 1rem;
|
122 |
+
border: 2px dashed #00acc1;
|
123 |
+
border-radius: 1rem;
|
124 |
+
}
|
125 |
/* تنسيق قسم إنشاء العقود */
|
126 |
.split-screen {
|
127 |
display: grid;
|
|
|
287 |
<i class="fas fa-project-diagram text-3xl mb-4 text-blue-600"></i>
|
288 |
<h3 class="text-xl font-bold text-gray-800 mb-3">خريطة التفكير</h3>
|
289 |
<p class="text-gray-600 mb-4">
|
290 |
+
استخدم تقنية تونى بوزان الشهيرة لإنشاء خريطة ذهنية مميزة لحل القضايا القانونية
|
291 |
</p>
|
292 |
+
<button class="action-button" onclick="showSection('mindMap')">إنشاء خريطة التفكير</button>
|
293 |
</div>
|
294 |
</div>
|
295 |
<div class="feature-card p-6">
|
|
|
317 |
<i class="fas fa-language text-3xl mb-4 text-blue-600"></i>
|
318 |
<h3 class="text-xl font-bold text-gray-800 mb-3">الترجمة القانونية</h3>
|
319 |
<p class="text-gray-600 mb-4">
|
320 |
+
ترجمة احترافية للوثائق القانونية مع إمكانية تنزيلها كملف PDF
|
321 |
</p>
|
322 |
<button class="action-button" onclick="showSection('translation')">ترجمة</button>
|
323 |
</div>
|
|
|
364 |
|
365 |
<!-- قسم خريطة التفكير القانونية -->
|
366 |
<section id="mindMap" class="section hidden">
|
367 |
+
<h2 class="text-3xl font-bold text-gray-800 mb-4">خريطة التفكير القانونية</h2>
|
368 |
+
<p class="mb-4 text-gray-700">
|
369 |
+
استخدم تقنية تونى بوزان الشهيرة لإنشاء خريطة ذهنية مميزة تساعدك في تحليل القضية وتحديد الحلول.
|
370 |
+
</p>
|
371 |
<div class="input-group bg-white rounded p-6 shadow">
|
372 |
<textarea class="w-full p-3 border rounded" placeholder="اكتب وصف الموضوع الذي تريد إنشاء خريطة ذهنية له..."></textarea>
|
373 |
<button class="action-button mt-4" onclick="handleSubmit('mindMap')">إنشاء خريطة التفكير</button>
|
374 |
+
<div id="mindMapResult" class="mt-4 response-container mind-map-output"></div>
|
375 |
</div>
|
376 |
</section>
|
377 |
|
|
|
396 |
<select class="p-3 rounded border w-full" id="fromLang">
|
397 |
<option value="ar">العربية</option>
|
398 |
<option value="en">الإنجليزية</option>
|
399 |
+
<option value="de">الألمانية</option>
|
400 |
+
<option value="zh">الصينية</option>
|
401 |
+
<option value="fr">الفرنسية</option>
|
402 |
+
<option value="it">الإيطالية</option>
|
403 |
+
<option value="es">الإسبانية</option>
|
404 |
</select>
|
405 |
<select class="p-3 rounded border w-full" id="toLang">
|
406 |
<option value="en">الإنجليزية</option>
|
407 |
<option value="ar">العربية</option>
|
408 |
+
<option value="de">الألمانية</option>
|
409 |
+
<option value="zh">الصينية</option>
|
410 |
+
<option value="fr">الفرنسية</option>
|
411 |
+
<option value="it">الإيطالية</option>
|
412 |
+
<option value="es">الإسبانية</option>
|
413 |
</select>
|
414 |
</div>
|
415 |
<div class="flex gap-4">
|
|
|
537 |
case 'documents':
|
538 |
return 'قم بإنشاء مستند قانوني بناءً على الوصف التالي: ';
|
539 |
case 'mindMap':
|
540 |
+
return 'قم بإنشاء خريطة ذهنية لحل القضية باستخدام تقنية تونى بوزان الشهيرة: ';
|
541 |
case 'search':
|
542 |
return 'ابحث عن معلومات قانونية حول: ';
|
543 |
case 'translation':
|