Spaces:
Sleeping
Sleeping
File size: 580 Bytes
cb1f9b3 |
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 |
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
<link rel="icon" href="data:,">
<title>Phân loại thực thể</title>
</head>
<body>
<p>{% block intro %}{% endblock %}</p>
<h1>{% block title %}{% endblock %}</h1>
<form method="POST", id="input">
<textarea name="text" placeholder="Nhập văn bản:"></textarea>
<button type="submit">Trích xuất thực thể</button>
</form>
<div id="output"></div>
{% block script %}{% endblock %}
</body>
</html> |