-
Notifications
You must be signed in to change notification settings - Fork 0
/
twitter_get.php
74 lines (58 loc) · 2.08 KB
/
twitter_get.php
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="">
<meta name="author" content="Franccesc Daunis">
<link rel="icon" href="assets/img/favicon.ico">
<title>Twitter Get Tweets</title>
<link href="bootstrap-4.1.3/dist/css/bootstrap.min.css" rel="stylesheet">
</head>
<body>
<header>
</header>
<main>
<div class="container-fluid">
<h1>Twitter Get Tweets</h1>
</div>
<hr>
<div class="container-fluid">
<div class="row">
<!--
<div class="col-6 col-lg-3">
<form id="form-dates">
<div class="form-group row">
<label for="tx_date1" class="col-sm-4 col-form-label">Start Date</label>
<div class="col-sm-8">
<input type="date" class="form-control" id="tx_date1" value="2018-10-01">
</div>
</div>
<div class="form-group row">
<label for="tx_date2" class="col-sm-4 col-form-label">End Date</label>
<div class="col-sm-8">
<input type="date" class="form-control" id="tx_date2" value="2018-10-05">
</div>
</div>
</form>
</div>
-->
<div class="col-6 col-lg-3" >
<h2>User <span class="badge badge-secondary" id="id_span_username" >????</span></h2>
<button id="id_bt_show_tweets" type="button" class="btn btn-primary" onclick="Event_Click_Button_Show_Tweets();">Show Tweets</button>
<button id="id_bt_show_more_tweets" type="button" class="btn btn-primary" onclick="Event_Click_Button_More_Tweets();">More Tweets</button>
<div class="container-fluid" id="id_div_loading"></div>
</div>
</div>
</div>
<div class="container-fluid" id="id_div_resultat">
</div>
</main>
<footer>
</footer>
<script src="jquery/jquery-3.3.1.min.js" ></script>
<script src="bootstrap-4.1.3/dist/js/popper_1.14.3.min.js" ></script>
<script src="bootstrap-4.1.3/dist/js/bootstrap.min.js" ></script>
<script src="assets/js/javascript.js" ></script>
</body>
</html>