-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfacebookApp.html
More file actions
79 lines (57 loc) · 2.18 KB
/
Copy pathfacebookApp.html
File metadata and controls
79 lines (57 loc) · 2.18 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<title>Modal</title>
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="fbApp.css">
</head>
<body>
<div class="jumbotron">
<h1 style="color: #FAFAFA">MyFacebook App</h1>
<p>Close current page by clicking the button again</p>
<p>...</p>
<div class="container">
<!--start of collapsable Buttons -->
<button class="btn btn-primary" id="btn1" role="button" data-toggle="collapse" href="#collapseExample" aria-expanded="false" aria-controls="collapseExample">
Profile Page
</button>
<button class="btn btn-primary" id="btn2" type="button" data-toggle="collapse" data-target="#collapseExample1" aria-expanded="false" aria-controls="collapseExample1">
Feeds Page.
</button><!--End of collapsable buttons-->
<!--Start of collapsable divisions-->
<!-- div 1-->
<div class="collapse" id="collapseExample">
<div class="well" style="text-align: left;">
<div class="loader">Loading...</div>
<p>Name :<span id="name"></span></p>
<p>Email :<span id="email"></span></p>
<p>Birthday :<span id="bday"></span></p>
<p>Hometown :<span id="htown"></span></p>
<p>Current location :<span id="currLoc"></span></p>
<p>Relationship status :<span id="relStatus"></span></p>
<div class="row">
<p class="col-md-2 col-lg-2">Education :</p><p id="edu" class="col-md-10 col-lg-10"></p>
</div>
<div class="row">
<p class="col-md-2 col-lg-2">Work :</p><p id="work" class="col-md-10 col-lg-10"></p>
</div>
</div>
</div>
<!--div 2 start-->
<div class="collapse" id="collapseExample1">
<div class="well">
<div class="loader">Loading...</div>
<div id="feed"></div>
</div>
</div>
<!--end of both div s-->
</div>
</div>
</body>
<script src="js/jquery.min.js" type="text/javascript"></script>
<script src="js/bootstrap.min.js" type="text/javascript"></script>
<script src="fb.js" type="text/javascript"></script>
</html>