wojood-api / static /index.html
alaajabari's picture
Update static/index.html
4b59845 verified
Raw
History Blame Contribute Delete
758 Bytes
<!DOCTYPE html>
<html>
<head>
<title>Arabic NER Demo</title>
<link rel="stylesheet" href="/static/style.css">
</head>
<body>
<div class="container">
<h2>NER Extraction</h2>
<textarea id="text" placeholder="Enter Arabic text..."></textarea>
<select id="mode">
<option value="1">JSON</option>
<option value="2">XML</option>
<option value="3">HTML</option>
<option value="4">Short JSON</option>
</select>
<button id="extractBtn" onclick="runNER()">Extract</button>
<p id="status"></p>
<pre id="output"></pre>
<pre id="output"></pre>
</div>
<script src="/static/script.js"></script>
</body>
</html>