File size: 1,948 Bytes
627168a f5967ac 627168a f5967ac 627168a f5967ac 627168a |
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 |
<!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.css">
<!-- Optionnel: Ajouter une police arabe si souhaité -->
<!-- <link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Noto+Kufi+Arabic:wght@400;700&display=swap" rel="stylesheet"> -->
</head>
<body>
<div class="chat-container">
<header>
<h1>مساعد قانوني مغربي</h1>
</header>
<div id="chatbox" class="chatbox">
<!-- Les messages du chat apparaitront ici via JavaScript -->
<div class="message assistant-message">
مرحباً! كيف يمكنني مساعدتك اليوم بخصوص القانون المغربي؟
</div>
</div>
<footer>
<div class="input-area">
<textarea id="message-input" placeholder="أدخل سؤالك هنا..." rows="1"></textarea>
<button id="send-button" aria-label="إرسال">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor" width="24" height="24">
<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" />
</svg>
</button>
</div>
<div class="footer-text">
قد تكون الإجابات غير دقيقة أو غير كاملة. استشر دائماً متخصصاً.
</div>
</footer>
</div>
<script src="script.js"></script>
</body>
</html> |