File size: 1,013 Bytes
78b74f3
 
032092c
 
 
 
 
 
 
 
 
 
 
 
 
 
f51bb56
 
78b74f3
f51bb56
 
032092c
 
 
 
 
 
 
 
 
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
26
27
28
29
30
--- index.html ---
```html
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Transformer Sentiment Analyzer</title>
  <link rel="stylesheet" href="style.css">
</head>
<body>
  <header>
    <h1>Transformer Sentiment Analyzer</h1>
  </header>
  <main class="container">
    <form id="analyze-form">
      <label for="modelSelect">Choose model:</label>
      <select id="modelSelect" name="modelSelect" aria-label="Select sentiment model">
        <!-- Dynamically populated in index.js -->
      </select>

      <label for="inputText">Enter text to analyze:</label>
      <textarea id="inputText" name="inputText" rows="4" placeholder="Type your text here..." required aria-required="true"></textarea>
      <button type="submit" id="analyzeButton">Analyze Sentiment</button>
    </form>
    <section id="result" aria-live="polite"></section>
  </main>
  <script type="module" src="index.js"></script>
</body>
</html>