MJ106 commited on
Commit
7c1d8cf
1 Parent(s): b26190f

Update sentiments.html

Browse files
Files changed (1) hide show
  1. sentiments.html +3 -6
sentiments.html CHANGED
@@ -40,8 +40,7 @@
40
  <div id="sentiment-analyzer-container" class="container mt-4">
41
  <h5>Single Input:</h5>
42
  <div class="d-flex align-items-center">
43
- <label for="sentimentText" class="mb-0 text-nowrap" style="margin-right: 15px;">Enter Text to
44
- Analyze:</label>
45
  <input type="text" class="form-control flex-grow-1" id="sentimentText" value="I love transformers!"
46
  placeholder="Enter text" style="margin-right: 15px; margin-left: 15px;">
47
  <button id="analyzeButton" class="btn btn-primary" onclick="analyzeSentiment()">Analyze</button>
@@ -57,8 +56,7 @@
57
  <div id="sentiment-analyzer-container2" class="container mt-4">
58
  <h5>Multiple Inputs:</h5>
59
  <div class="d-flex align-items-center mb-2">
60
- <label for="sentimentText1" class="mb-0 text-nowrap" style="margin-right: 15px;">Enter Text to
61
- Analyze 1:</label>
62
  <input type="text" class="form-control flex-grow-1" id="sentimentText1" value="I love transformers!"
63
  placeholder="Enter text" style="margin-right: 15px; margin-left: 15px;">
64
  </div>
@@ -82,8 +80,7 @@
82
  <div id="toxic-container" class="container mt-4">
83
  <h5>Toxic Comment Classification (Return All Classes):</h5>
84
  <div class="d-flex align-items-center">
85
- <label for="toxicText" class="mb-0 text-nowrap" style="margin-right: 15px;">Enter Toxic
86
- Text:</label>
87
  <input type="text" class="form-control flex-grow-1" id="toxicText" value="I hate you!"
88
  placeholder="Enter text" style="margin-right: 15px; margin-left: 15px;">
89
  <button id="toxicButton" class="btn btn-primary" onclick="toxicReview()">Review</button>
 
40
  <div id="sentiment-analyzer-container" class="container mt-4">
41
  <h5>Single Input:</h5>
42
  <div class="d-flex align-items-center">
43
+ <label for="sentimentText" class="mb-0 text-nowrap" style="margin-right: 15px;">Enter Text to Analyze:</label>
 
44
  <input type="text" class="form-control flex-grow-1" id="sentimentText" value="I love transformers!"
45
  placeholder="Enter text" style="margin-right: 15px; margin-left: 15px;">
46
  <button id="analyzeButton" class="btn btn-primary" onclick="analyzeSentiment()">Analyze</button>
 
56
  <div id="sentiment-analyzer-container2" class="container mt-4">
57
  <h5>Multiple Inputs:</h5>
58
  <div class="d-flex align-items-center mb-2">
59
+ <label for="sentimentText1" class="mb-0 text-nowrap" style="margin-right: 15px;">Enter Text to Analyze 1:</label>
 
60
  <input type="text" class="form-control flex-grow-1" id="sentimentText1" value="I love transformers!"
61
  placeholder="Enter text" style="margin-right: 15px; margin-left: 15px;">
62
  </div>
 
80
  <div id="toxic-container" class="container mt-4">
81
  <h5>Toxic Comment Classification (Return All Classes):</h5>
82
  <div class="d-flex align-items-center">
83
+ <label for="toxicText" class="mb-0 text-nowrap" style="margin-right: 15px;">Enter Toxic Text:</label>
 
84
  <input type="text" class="form-control flex-grow-1" id="toxicText" value="I hate you!"
85
  placeholder="Enter text" style="margin-right: 15px; margin-left: 15px;">
86
  <button id="toxicButton" class="btn btn-primary" onclick="toxicReview()">Review</button>