-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmembers.php
71 lines (61 loc) · 2.4 KB
/
members.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
<?php include('init.php');?>
<html>
<head>
<link rel="stylesheet" href="css/bootstrap.min.css"/>
<link rel="stylesheet" href="css/goal-style.css"/>
<link rel="stylesheet" href="css/heading-style.css"/>
<link rel="stylesheet" href="css/content-style.css"/>
<link rel="stylesheet" href="css/checkpoint-style.css"/>
<link href='css/google-fonts.css' rel='stylesheet' type='text/css'/>
<link href='css/style.css' rel='stylesheet' type='text/css'/>
</head>
<body style="margin:0; background-color: #F2F2F2;">
<header></header>
<!-- Left side: goals, mostly -->
<div id="leftpane">
<div id='topbar'>
<input type="text" id="searchbar" placeholder="search...">
<div id='searchBtn'>
<i id='searchIcon' class="icon icon-search"></i>
</div>
<div id='createGoalBtn'>+</div>
</div>
<div id="goalContainer"></div>
<div id='suggestNewGoal' class='suggestion' style='position:relative; top:0px; left:37px; font-family:Open Sans; line-height:18px'>
stuck? try one of these:
<br><br>
<ul>
<li><a onclick="app.appView.goalList.createGoal('write a short story')"> write a short story</a></li>
<li><a onclick="app.appView.goalList.createGoal('sleep early')"> sleep early</a></li>
<li><a onclick="app.appView.goalList.createGoal('call parents')"> call parents tomorrow</a></li>
</ul>
</div>
</div>
<!-- Right side: main content, stuff... -->
<div id="rightpane">
<div id="bigContainer"></div>
<input id="cmd-input" type="text" placeholder="what happened?"/>
<div id="rightbackdrop"></div>
</div>
<div id="checkpointPane">
<div class="icon-chevron-right" id="checkpointPaneClose"></div>
<div class="icon-plus-sign" id="createCheckpointBtn"></div>
<div id="checkpointContainer"></div>
</div>
<script>
var username = "<?php echo $_SESSION['uname'];?>"
</script>
<script src="js/jquery-1.10.2.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/underscore-1.5.1.js"></script>
<script src="js/backbone-min.js"></script>
<script src="js/models/models.js"></script>
<script src="js/collections/collections.js"></script>
<script src="js/views/appView.js"></script>
<script src="js/views/content.js"></script>
<script src="js/views/goals.js"></script>
<script src="js/views/heading.js"></script>
<script src="js/views/checkpoint.js"></script>
<script src="js/app.js"></script>
</body>
</html>