| <!DOCTYPE html> |
| <html lang="ar"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| <title>مؤتمر الذكاء الاصطناعي</title> |
| <style> |
| body { |
| font-family: 'Arial', sans-serif; |
| direction: rtl; |
| text-align: right; |
| background-color: |
| padding: 20px; |
| } |
| h2 { |
| color: |
| } |
| form { |
| margin-bottom: 20px; |
| } |
| input[type="text"] { |
| width: 60%; |
| padding: 8px; |
| margin-right: 10px; |
| } |
| button { |
| padding: 8px 12px; |
| background-color: |
| color: white; |
| border: none; |
| cursor: pointer; |
| } |
| button:hover { |
| background-color: |
| } |
| ul { |
| list-style-type: none; |
| padding: 0; |
| } |
| li { |
| background: white; |
| margin: 8px 0; |
| padding: 10px; |
| border-radius: 5px; |
| border-right: 4px solid |
| } |
| </style> |
| </head> |
| <body> |
| <h2>مناظرة بين العقول: نورا، ChatGPT، Claude، Bard</h2> |
| <form method="post"> |
| <input type="text" name="question" placeholder="اكتب سؤالاً للنقاش" required> |
| <button type="submit">أرسل</button> |
| </form> |
| {% if responses %} |
| <h3>الردود:</h3> |
| <ul> |
| {% for name, reply in responses.items() %} |
| <li><strong>{{ name }}:</strong> {{ reply }}</li> |
| {% endfor %} |
| </ul> |
| {% endif %} |
| </body> |
| </html> |
|
|
|
|