Spaces:
Running
Running
DarwinAnim8or
commited on
Commit
•
86ffda0
1
Parent(s):
8289f5b
Create index.html
Browse files- index.html +14 -0
index.html
ADDED
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!-- index.html -->
|
2 |
+
<html>
|
3 |
+
<head>
|
4 |
+
<title>Text Classification</title>
|
5 |
+
</head>
|
6 |
+
<body>
|
7 |
+
<h1>Text Classification with Huggingface</h1>
|
8 |
+
<form action="/classify" method="post">
|
9 |
+
<label for="text">Enter some text:</label>
|
10 |
+
<input type="text" id="text" name="text" required>
|
11 |
+
<button type="submit">Classify</button>
|
12 |
+
</form>
|
13 |
+
</body>
|
14 |
+
</html>
|