-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
84 lines (78 loc) · 3.08 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Birthday Donate Party</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- css -->
<link href="bower_components/bootstrap-sass-official/assets/css/_bootstrap.css" rel="stylesheet">
<link href="../styles/css/style.css" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="../styles/css/icons.css">
</head>
<body>
<div id = "chNav" class="navbar nav-default navbar-fixed-top" role = "navigation">
<div class="container">
<div class = "navbar-header">
<a class = "chA navbar-brand" href = "#">Birthday Donate Party</a>
</div>
<div class="navbar-collapse collapse">
<ul id = "chNL" class="nav navbar-nav">
<li>
<input type = "text" placeholder = "Search Project">
<i id = "search" class="icon ibm-search"></i>
</li>
</ul>
<ul class="nav navbar-nav navbar-right">
<li>
<a class = "chA" href="html/donate_event.html">
<i id = "glass" class="icon ibm-glasses"></i>
</a>
</li>
<li>
<a class = "chA" href="html/donate_impact.html">
<i id = "folder" class="icon ibm-folder"></i>
</a>
</li>
<li>
<a class = "chA" href="#">
<img style = "width: 30px; border-radius: 15px;" src = "http://images.ak.instagram.com/profiles/profile_179722912_75sq_1339942564.jpg">
</a>
</li>
</ul>
</div>
</div>
</div>
<div id = "content">
<div class="container">
<div style = "margin-left: 4em;">
<div class="project-list"></div>
</div>
</div>
</div>
<!-- Modal -->
<div class="modal fade" id="myModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">×</span><span class="sr-only">Close</span></button>
<h4 class="modal-title" id="myModalLabel">Pledge Your Friends</h4>
</div>
<div class="modal-body">
<div>
<input class = "inputModal" id = "input" type = "text" placeholder = "To">
</div>
<div>
<textarea id = "textArea" class = "inputModal" placeholder = "Tell your friends why you want to donate this project"></textarea>
</div>
</div>
<div class="modal-footer">
<button type="button" id = "chBtn" class="btn" data-dismiss="modal">Send</button>
</div>
</div>
</div>
</div>
<script src="https://code.jquery.com/jquery-1.11.1.min.js"></script>
<script src="../lib/bootstrap/js/bootstrap.min.js"></script>
<script type="text/javascript" src="js/projects.js"></script>
</body>
</html>