File size: 1,392 Bytes
8158335
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
<!DOCTYPE html>
<html>
<head>
	<title>My Twitter Sentiment API Webpage</title>
	<meta charset="UTF-8">
	<meta name="description" content="This is a simple webpage that is included in my Twitter Sentiment API project.">
	<link rel="stylesheet" type="text/css" href="../static/style.css">
	<link rel="shortcut icon" type="image/x-icon" href="../static/tweepy.ico">
</head>
<body>
	<div class="page">
		<h1>My Twitter Sentiment API Webpage</h1>
		<p>This is a simple webpage that is included in my Twitter Sentiment API project.</p>
		<div class="form">
			<label for="account">Choose the Twitter account you'd like to generate a response to your input:</label>
			<select name="account" id="account">
			  <option value="alikarimi_ak8">alikarimi_ak8</option>
			  <option value="elonmusk">elonmusk</option>
			  <option value="BarackObama">BarackObama</option>
			  <option value="taylorlorenz">taylorlorenz</option>
			  <option value="cathiedwood">cathiedwood</option>
			  <option value="ylecun">ylecun</option>
			</select>
	<link rel="shortcut icon" type="image/x-icon" href="../static/tweepy.ico">
			<textarea id="input" placeholder="Enter text here..." >Hello world...!?</textarea>
			<button id="generate">Generate</button>
			<textarea id="output" placeholder="Generated text will appear here..."></textarea>
		</div>
	</div>
	<script src="../static/main.js"></script>
</body>
</html>