Spaces:
Sleeping
Sleeping
| <main> | |
| <section id="text-classification"> | |
| <head> | |
| <link rel="stylesheet" type="text/css" href="{{ url_for('static', filename= 'CSS/home.css')}}"> | |
| </head> | |
| <body> | |
| <h2>تصنيف المناطق </h2> | |
| <div align="center"> | |
| <h1>قم بإدخال جملة عربية لتصنيفها كواحدة من ثلاث مناطق</h1> | |
| <h1>مصر، الخليج العربي أو الشام</h1> | |
| <small><em>Enter an Arabic text to classify it to one of three regions:</em></small> | |
| <small><em>Egypt, Gulf or Levant</em></small></div> | |
| <br> | |
| <div align="center"> | |
| <form action="{{url_for('classify')}}" method="POST"> | |
| <textarea name="comment" required="true" rows="1" cols="40"></textarea> | |
| <br> | |
| <input type="submit" value="صَنِف" class="button-89"> | |
| <div id="output"> | |
| {% if {{ output }} == "GULF": %} | |
| <p class="output-statement">{{output}}</p> | |
| {% endif %} | |
| </div> | |
| </form> | |
| </div> | |
| </body> | |
| </section> | |
| </main> | |