-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
377 lines (224 loc) · 10.5 KB
/
index.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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<meta charset="utf-8">
<title>Atma</title>
<meta name="generator" content="Bootply" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<link href="css/bootstrap.min.css" rel="stylesheet">
<!--[if lt IE 9]>
<script src="//html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link href="css/styles.css" rel="stylesheet">
<script type="text/javascript" src="jquery-1.8.0.min.js"></script>
<script type="text/javascript">
$(function(){
$(".search").keyup(function()
{
var searchid = $(this).val();
var dataString = 'search='+ searchid;
if(searchid!='')
{
$.ajax({
type: "POST",
url: "search.php",
data: dataString,
cache: false,
success: function(html)
{
$("#result").html(html).show();
}
});
}return false;
});
jQuery("#result").live("click",function(e){
var $clicked = $(e.target);
var $name = $clicked.find('.name').html();
var decoded = $("<div/>").html($name).text();
$('#searchid').val(decoded);
});
jQuery(document).live("click", function(e) {
var $clicked = $(e.target);
if (! $clicked.hasClass("search")){
jQuery("#result").fadeOut('slow');
}
});
$('#searchid').click(function(){
jQuery("#result").fadeIn();
});
});
$(document).click(function(){
$("#result").hide();
});
/* Clicks within the dropdown won't make
it past the dropdown itself */
$("#result").click(function(e){
e.stopPropagation();
});
</script>
<style type="text/css">
body{
font-family:Tahoma, Geneva, sans-serif;
font-size:18px;
}
.content{
width:900px;
margin:0 auto;
padding-top: 3px;
}
#searchid
{
width:500px;
border:solid 1px #000;
padding:10px;
font-size:14px;
border-radius: 2pc;
}
#result
{
position:absolute;
width:500px;
padding:10px;
display:none;
margin-top:-1px;
border-top:0px;
overflow:hidden;
border:1px #CCC solid;
background-color: white;
}
.show
{
padding:10px;
border-bottom:1px #999 dashed;
font-size:15px;
height:50px;
color: #000;
}
.show:hover
{
background:#4c66a4;
color:#FFF;
cursor:pointer;
}
</style>
</head>
<body>
<div class="wrapper">
<div class="box">
<div class="row row-offcanvas row-offcanvas-left">
<!-- sidebar -->
<div class="column col-sm-2 col-xs-1 sidebar-offcanvas" id="sidebar">
<ul class="list-unstyled hidden-xs" id="sidebar-header">
<li>
<h3>Atma</h3>
</li>
</ul>
<ul class="nav hidden-xs" id="lg-menu">
<li class="active"><a href="registrations/adminlogin.php">Admin</a></li>
<li><a href="registrations/ngologin.php">NGO login</a></li>
<li><a href="#">.....</a></li>
<li><a href="#">.....</a></li>
</ul>
</br></br></br></br></br>
<div class="a2a_kit a2a_kit_size_32 a2a_floating_style a2a_vertical_style" style="left:0px; top:250px;">
<a href="https://www.facebook.com/cachebuffer/" class="a2a_button_facebook"></a>
<a class="a2a_button_twitter"></a>
<a class="a2a_button_google_plus"></a>
<a class="a2a_button_pinterest"></a>
<!-- <a class="a2a_dd" href="https://www.addtoany.com/share"></a>-->
</div>
<script async src="//static.addtoany.com/menu/page.js"></script>
<!-- tiny only nav-->
</div>
<!-- /sidebar -->
<!-- main right col -->
<div class="column col-sm-10 col-xs-11" id="main">
<!-- top nav -->
<div class="navbar navbar-blue navbar-static-top">
<div class="navbar-header">
<button class="navbar-toggle" type="button" data-toggle="collapse" data-target=".navbar-collapse">
<span class="sr-only">Toggle</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<!--<a href="/" class="navbar-brand logo">Cb</a>-->
</div>
<nav class="collapse navbar-collapse" role="navigation">
<div class="content">
<b>Atma</b>
<!--<input type="text" class="search" id="searchid" placeholder="Search for Blogs" /> <br /> -->
<div id="result">
</div>
</div>
</nav>
</div>
<!-- /top nav -->
<div class="padding">
<div class="full col-sm-9">
<!-- content -->
<div class="row">
<!-- main col left -->
<div class="col-sm-4">
<img src="image/logo.png" style="float:left">
</div>
<div class="col-sm-5">
<div class="well">
<form class="form">
<h4>Connect with Atma!!</h4>
<div class="input-group text-center">
<a href="registrations/logincolg.php"><button class="btn btn-lg btn-primary" type="button">Login</button>  
<a href="registrations/colgreg.php"><button class="btn btn-lg btn-primary" type="button">Signup</button></a>
</div>
</form>
</div>
</div>
</div>
<br>
<br>
<div>
<p> <h3><b> Mission: </b></h3></p>
<p>Atma is an accelerator for education and their mission is to build the capacity of education NGOs to achieve sustainability and scalability, thereby enabling delivery of quality education for all children.
</p>
<p> <h3><b> Context: </b></h3></p>
<p>
Atma runs an Accelerator Program that partners with many NGOs in India. Atma believes that NGO leaders have the vision and passion to achieve their mission, but there is only so much the NGOs can do on their own. The Atma Accelerator Program supports and consults with different education NGOs in Mumbai by providing management expertise. This helps the NGOs become bigger, better, stronger, and to expand their reach and impact in a sustainable way.
In the Accelerator Program, Atma dedicates 1200 hours to each of their NGO partners to help with their development and growth. Atma also provides each education NGO with 3 highly skilled volunteers and 1 Partner Manager responsible for helping the NGOs with their development and implementation plans. NGOs selected for the Accelerator Program receive three years of consultancy support in 10 Organizational Development areas such as Administration, Finance, Fundraising, Monitoring & Evaluation, Human Resources, Governance, Leadership, Strategy, Development, Programs and Marketing. Ultimately, Atma helps education NGOs design and implement projects in these areas with the help of skilled associates. They also conduct trainings and workshops to enhance operational capabilities in various areas like Financial Management. The NGOs that are a part of the Accelerator Program have access to resources, peers, funders and experts that can expand their impact and allow them to achieve their mission more effectively.
</p>
<b><h3><p>Challenge Statement:</b></h3></p>
<p>
Atma’s Volunteers and Partner Manager collaborate with NGOs for implementing business development plans. Your challenge is to develop a gamified platform for Atma’s volunteers and Partner Manager to effectively collaborate with NGOs around the implementation of their business development plan.
</p>
<b><h3><p>Gamification: </b></h3>How could gamification incentivize involved players (Partner Managers, Volunteers & NGOs) to leverage the platform and report on their development plan’s progress and growth? The platform should capture the project’s goals, important milestones, and roles and responsibilities of involved players. Volunteers, Partner Managers, and NGOs could earn badges as they reach milestones individually (or against another group) in the Accelerator Program.
Tracker: The Partner Manager should be able to breakdown the development plan into a step by step action plan and should be able to assign tasks and deadlines to volunteers and NGOs, send reminders to complete the tasks, and track the action plan.
Dashboard: Atma should be able to access a dashboard for generating reports of project statuses.
<b><h3><p>Technology Baseline:</b></h3>
Atma currently uses Google Spreadsheets and email for the communication with stakeholders involved
Atma does not have dedicated technology staff
</div>
</div>
<!-- main col right -->
<div class="col-sm-7">
</div>
</div><!--/row-->
<hr>
<hr>
</div><!-- /col-9 -->
</div><!-- /padding -->
</div>
<!-- /main -->
</div>
</div>
</div>
<!--post modal-->
<!-- script references -->
<script src="//ajax.googleapis.com/ajax/libs/jquery/2.0.2/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/scripts.js"></script>
</body>
</html>