-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
32 lines (29 loc) · 1.84 KB
/
index.html
File metadata and controls
32 lines (29 loc) · 1.84 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
<html>
<head>
<title>Twitter Sentiment Analysis || 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" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<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>EnterUserInput</p>
<input type="text" name="userenterinput" placeholder="Enter User 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="" class="fa fa-linkedin-square" style="font-size:36px" target="_black"></a>
<a href="" class="fa fa-github" style="font-size:36px" target="_black"> </a>
<a href="" class="fa fa-twitter-square" style="font-size:36px" target="_black"> </a>
<a href="" class="fa fa-instagram" style="font-size:36px" target="_black"></a>
</form>
</div>
</body>
</html>