Update index.html
Browse files- index.html +5 -0
index.html
CHANGED
@@ -13,6 +13,11 @@
|
|
13 |
</header>
|
14 |
<main class="container">
|
15 |
<form id="analyze-form">
|
|
|
|
|
|
|
|
|
|
|
16 |
<label for="inputText">Enter text to analyze:</label>
|
17 |
<textarea id="inputText" name="inputText" rows="4" placeholder="Type your text here..." required aria-required="true"></textarea>
|
18 |
<button type="submit" id="analyzeButton">Analyze Sentiment</button>
|
|
|
13 |
</header>
|
14 |
<main class="container">
|
15 |
<form id="analyze-form">
|
16 |
+
<label for="modelSelect">Choose model:</label>
|
17 |
+
<select id="modelSelect" name="modelSelect" aria-label="Select sentiment model">
|
18 |
+
<!-- options will be populated dynamically -->
|
19 |
+
</select>
|
20 |
+
|
21 |
<label for="inputText">Enter text to analyze:</label>
|
22 |
<textarea id="inputText" name="inputText" rows="4" placeholder="Type your text here..." required aria-required="true"></textarea>
|
23 |
<button type="submit" id="analyzeButton">Analyze Sentiment</button>
|