IsmatS's picture
check
ebad198
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Named Entity Recognition</title>
<link rel="stylesheet" href="/static/style.css">
</head>
<body>
<div class="container">
<h1>Named Entity Recognition</h1>
<p>Enter your text below to analyze entities and see their types, such as Date, Person, or Location.</p>
<form id="nerForm">
<!-- Add the default sentence as a value in the textarea -->
<textarea id="textInput" name="text">2014 - cu ilde Azərbaycan Respublikasının prezidenti İlham Əliyev Salyanda olub.</textarea>
<button type="submit">Analyze</button>
</form>
<div id="results" class="results-section">
<h2>Results</h2>
<div id="resultsContent"></div> <!-- Display JSON here -->
</div>
</div>
<script src="/static/app.js"></script>
</body>
</html>