Spaces:
Sleeping
Sleeping
Update templates/index.html
Browse files- templates/index.html +3 -11
templates/index.html
CHANGED
|
@@ -1,21 +1,17 @@
|
|
| 1 |
<!DOCTYPE html>
|
| 2 |
<html>
|
| 3 |
<head>
|
| 4 |
-
<title>
|
| 5 |
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
|
| 6 |
</head>
|
| 7 |
<body class="bg-dark text-white">
|
| 8 |
|
| 9 |
<div class="container mt-5 text-center">
|
| 10 |
-
<h1>🔥 Sentiment Analysis
|
| 11 |
|
| 12 |
-
<!-- FORM MULAI -->
|
| 13 |
<form method="POST">
|
|
|
|
| 14 |
|
| 15 |
-
<!-- INPUT KEYWORD -->
|
| 16 |
-
<input class="form-control mt-3" name="keyword" placeholder="Contoh: Jokowi" required>
|
| 17 |
-
|
| 18 |
-
<!-- 🔥 INI TEMPATNYA (RADIO BUTTON) -->
|
| 19 |
<div class="mt-4">
|
| 20 |
<label>Pilih Sumber:</label><br>
|
| 21 |
|
|
@@ -24,12 +20,8 @@
|
|
| 24 |
<input type="radio" name="source" value="reddit"> Reddit
|
| 25 |
</div>
|
| 26 |
|
| 27 |
-
<!-- BUTTON -->
|
| 28 |
<button class="btn btn-primary mt-4">Analisis</button>
|
| 29 |
-
|
| 30 |
</form>
|
| 31 |
-
<!-- FORM SELESAI -->
|
| 32 |
-
|
| 33 |
</div>
|
| 34 |
|
| 35 |
</body>
|
|
|
|
| 1 |
<!DOCTYPE html>
|
| 2 |
<html>
|
| 3 |
<head>
|
| 4 |
+
<title>Sentiment Analysis</title>
|
| 5 |
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
|
| 6 |
</head>
|
| 7 |
<body class="bg-dark text-white">
|
| 8 |
|
| 9 |
<div class="container mt-5 text-center">
|
| 10 |
+
<h1>🔥 Sentiment Analysis</h1>
|
| 11 |
|
|
|
|
| 12 |
<form method="POST">
|
| 13 |
+
<input class="form-control mt-3" name="keyword" placeholder="Masukkan keyword" required>
|
| 14 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 15 |
<div class="mt-4">
|
| 16 |
<label>Pilih Sumber:</label><br>
|
| 17 |
|
|
|
|
| 20 |
<input type="radio" name="source" value="reddit"> Reddit
|
| 21 |
</div>
|
| 22 |
|
|
|
|
| 23 |
<button class="btn btn-primary mt-4">Analisis</button>
|
|
|
|
| 24 |
</form>
|
|
|
|
|
|
|
| 25 |
</div>
|
| 26 |
|
| 27 |
</body>
|