forked from itscodenation/facebook-wall-jquery-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
47 lines (40 loc) · 1.19 KB
/
index.html
File metadata and controls
47 lines (40 loc) · 1.19 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
<!DOCTYPE html>
<html>
<head>
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css" rel="stylesheet" type="text/css" />
<link href="css/wall.css" rel="stylesheet" type="text/css" />
<script src="https://code.jquery.com/jquery-1.9.1.min.js"></script>
<script src="js/wall.js"></script>
<title>ScriptEd Unit 10 Project: Facebook wall</title>
</head>
<body>
<div class="container">
<h1>ScriptEd Unit 10 Project: Facebook wall</h1>
<hr/>
<div class="row" id="search-bar">
<div class="col-md-10">
<b>The amount of post you have is <span id="number">0</span></b>
<input type="text" class="form-control input-lg " id="message" placeholder="Type in your message">
</div>
<div class="col-md-2">
<button type="submit" id="post-btn" class="btn btn-primary btn-lg btn-block">Post</button>
</div>
</div>
<div id="wall">
</div>
</div>
</body>
<templates style="display: none">
<div class="row contact-row">
</div>
<div class="contact col-md-4 text-center">
<img class="img-circle" src="">
<br/>
<h3>
<span class="name"></span><br/>
<span class="location"></span><br/>
<span class="email"></span>
</h3>
</div>
</templates>
</html>