-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsentiment.html
More file actions
39 lines (32 loc) · 2.04 KB
/
sentiment.html
File metadata and controls
39 lines (32 loc) · 2.04 KB
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
31
32
33
34
35
36
37
38
39
<html>
<head>
<title>Twitter Sentiment Analysis of {{ name }} || Raja Sekhar</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css" integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='style.css') }}">
</head>
<body>
<div class="loginbox">
<a href="/"><img src="{{ url_for('static', filename='logo.png') }}" class="avatar"></a>
<h1>Sentiment Analysis</h1>
<!--<form method="post" name="Userinput" id="Userinput" action="/sentiment">
<p>UserID</p>
<input type="text" name="userid" placeholder="Enter UserID without @">
<p>HashTag</p>
<input type="text" name="hashtag" placeholder="Enter HashTag with #">
<p>UserEnterinput</p>
<input type="text" name="userenterinput" placeholder="Enter User Manual Input Here">
<center><button type="submit" class="btn btn-light btn-outline-success" id="sendMessageButton">Get Analysis</button></center>
<br>
<center><a href="#"><h6 style="color: red" >{{ error }}</h6></a></center>
<a href="https://bit.ly/2Ky3ho6"><h5>Raja Sekhar</h5></a>
</form>
-->
<p style="color: #008000">Positive:- {{ positive }} %</p><center><p style="font-size: 35px">🙂</p></center>
<p style="color: red">Negative:- {{ negative }} %</p><center><p style="font-size: 35px">🙁</p></center>
<p style="color: #FFFF00">Neutral:- {{ neutral }} %</p><center><p style="font-size: 35px">🙄</p></center>
<br>
<center><a href="/"><button class="btn btn-light btn-outline-success" id="sendMessageButton">← Back to Home</button></a>
</center>
</div>
</body>
</html>