Update static/index.html
Browse files- static/index.html +28 -7
static/index.html
CHANGED
@@ -5,16 +5,37 @@
|
|
5 |
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
6 |
<title>مساعد قانوني</title>
|
7 |
<link rel="stylesheet" href="style.css">
|
|
|
|
|
|
|
|
|
8 |
</head>
|
9 |
<body>
|
10 |
-
<
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
17 |
</div>
|
|
|
18 |
<script src="script.js"></script>
|
19 |
</body>
|
20 |
</html>
|
|
|
5 |
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
6 |
<title>مساعد قانوني</title>
|
7 |
<link rel="stylesheet" href="style.css">
|
8 |
+
<!-- Optionnel: Ajouter une police arabe si souhaité -->
|
9 |
+
<!-- <link rel="preconnect" href="https://fonts.googleapis.com">
|
10 |
+
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
11 |
+
<link href="https://fonts.googleapis.com/css2?family=Noto+Kufi+Arabic:wght@400;700&display=swap" rel="stylesheet"> -->
|
12 |
</head>
|
13 |
<body>
|
14 |
+
<div class="chat-container">
|
15 |
+
<header>
|
16 |
+
<h1>مساعد قانوني مغربي</h1>
|
17 |
+
</header>
|
18 |
+
<div id="chatbox" class="chatbox">
|
19 |
+
<!-- Les messages du chat apparaitront ici via JavaScript -->
|
20 |
+
<div class="message assistant-message">
|
21 |
+
مرحباً! كيف يمكنني مساعدتك اليوم بخصوص القانون المغربي؟
|
22 |
+
</div>
|
23 |
+
</div>
|
24 |
+
<footer>
|
25 |
+
<div class="input-area">
|
26 |
+
<textarea id="message-input" placeholder="أدخل سؤالك هنا..." rows="1"></textarea>
|
27 |
+
<button id="send-button" aria-label="إرسال">
|
28 |
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor" width="24" height="24">
|
29 |
+
<path d="M3.478 2.405a.75.75 0 00-.926.94l2.432 7.905H13.5a.75.75 0 010 1.5H4.984l-2.432 7.905a.75.75 0 00.926.94 60.519 60.519 0 0018.445-8.986.75.75 0 000-1.218A60.517 60.517 0 003.478 2.405z" />
|
30 |
+
</svg>
|
31 |
+
</button>
|
32 |
+
</div>
|
33 |
+
<div class="footer-text">
|
34 |
+
قد تكون الإجابات غير دقيقة أو غير كاملة. استشر دائماً متخصصاً.
|
35 |
+
</div>
|
36 |
+
</footer>
|
37 |
</div>
|
38 |
+
|
39 |
<script src="script.js"></script>
|
40 |
</body>
|
41 |
</html>
|