-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtweets.html
112 lines (89 loc) · 4.04 KB
/
tweets.html
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="">
<title>Twitter API</title>
<!-- Bootstrap core CSS -->
<link href="css/bootstrap.css" rel="stylesheet">
<link href="css/custom.css" rel="stylesheet">
<link href="css/social-buttons.css" rel="stylesheet">
<link href="css/font-awesome.css" rel="stylesheet">
<!-- Custom CSS for the 'Business Frontpage' Template -->
<link href="css/business-frontpage.css" rel="stylesheet">
</head>
<body>
<nav class="navbar navbar-fixed-top navbar-default" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-ex1-collapse">
<span class="sr-only">Twitter APP</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="index.html"><span style="color:white"><strong>Twitter API</strong></span></a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse navbar-ex1-collapse">
<ul class="nav navbar-nav">
<li><a href="index.html"><span style="color:white">Home</span></a>
</li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown"><span style="color:white"><strong>Tweets</strong></span><b class="caret"></b></a>
<ul class="dropdown-menu">
<li><a href="tweets.html"><strong>Find last tweets</strong></a></li>
<li class="divider"></li>
<li><a href="hashtag.html">Find by hashtag</a></li>
</ul>
</li>
<li><a href="posting.html"><span style="color:white">Posting</span></a>
</li>
</ul>
</div>
<!-- /.navbar-collapse -->
</div>
<!-- /.container -->
</nav>
<div class="business-header">
<div class="container">
<div class="row">
<div class="col-lg-12">
<!-- The background image is set in the custom CSS -->
</div>
</div>
</div>
</div>
<br><br>
<div class="container">
<!-- Main component for a primary marketing message or call to action -->
<div class="jumbotron">
<h1>Find user Tweets</h1><hr>
<form action="app.php" method="get">
<div class="input-group input-group-lg">
<span class="input-group-addon">Type a Twitter Username:
</span>
<input type="text" class="form-control" name="user" placeholder="@Username or Username">
</div>
<br>
<div class="input-group input-group-lg">
<span class="input-group-addon">Type the number of tweets to show:</span>
<input type="text" class="form-control" name="cantTweet" placeholder="Number or tweets to show. Ex. 5 or 36">
</div>
<hr>
<input type="submit" class="btn btn-lg btn-info" value="Show Tweets">
</form>
</div>
</div> <!-- /container -->
<br><br>
<div class="end-footer">
<p>2014 © Team Sanchez. All Rights reserved. <strong>Lenguajes de Programacion | ISC PUCMM</strong></p>
</div>
<!-- JavaScript -->
<script src="js/jquery-1.10.2.js"></script>
<script src="js/bootstrap.js"></script>
</body>
</html>