This repository was archived by the owner on Aug 15, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
716 lines (638 loc) · 31.3 KB
/
index.html
File metadata and controls
716 lines (638 loc) · 31.3 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
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
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>HyperPerform</title>
<meta name="description" content="">
<!-- Place favicon.ico and apple-touch-icon.png in the root directory -->
<link rel="icon" type="image/png" href="img/Logo2.png">
<!-- Style -->
<link rel="stylesheet" href="css/main.css">
<!-- Responsiv -->
<link rel="stylesheet" href="css/responsive.css">
<!-- Font awesome -->
<link rel="stylesheet" href="css/font-awesome.min.css">
<!-- Bootstrp -->
<link rel="stylesheet" href="css/bootstrap.min.css">
<!-- Animations min -->
<link rel="stylesheet" href="css/animations.css">
<!-- Lightbox -->
<link rel="stylesheet" href="css/lightbox.css" />
<!-- Team -->
<link rel="stylesheet" href="css/team.css"/>
<!-- Ribbin -->
<link rel="stylesheet" href="css/ribbons.css"/>
<!-- Script -->
<script src="js/vendor/modernizr-2.6.2.min.js"></script>
<script src="js/vendor/jquery-1.10.2.min.js"></script>
<script src="js/plugins.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/main.js"></script>
<script src="js/animations.min.js"></script>
<script src="js/jquery.scrollUp.min.js"></script>
<script src="js/lightbox.min.js"></script>
<script src="js/smoothscroll.js"></script>
<script src="js/visible.min.js"></script>
<script src="js/jquery.nav.js"></script>
<!-- <meta name="viewport" content="initial-scale=1.0, user-scalable=no" /> -->
<!-- Touch pdf -->
<script type="text/javascript" src="js/pdf.compatibility.js"></script>
<script type="text/javascript" src="js/pdf.js"></script>
<script type="text/javascript" src="js/jquery.touchSwipe.js"></script>
<script type="text/javascript" src="js/jquery.panzoom.js"></script>
<script type="text/javascript" src="js/jquery.mousewheel.js"></script>
<script type="text/javascript" src="js/jquery.touchPDF.js"></script>
<link href="js/jquery.touchPDF.css" rel="stylesheet" media="screen" />
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<!-- <a class="github-fork-ribbon" href="https://github.com/Hyperperform" title="View us on GitHub"></a> -->
<!-- Header -->
<header id="header">
<div class="ribbon right green cursor">
<a onclick="window.location.href='https://github.com/Hyperperform'" href="https://www.github.com/Hyperperform">View us on GitHub <i class="fa fa-github"></i></a>
</div>
<nav id="head-nav" class="navbar topnavbar navbar-fixed-top" role="navigation" data-spy="affix" data-offset-top="200">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<i class="fa fa-bars"></i>
</button>
<a href="#header" class="navbar-brand header"><img src="img/logo.png" alt="" height="100" width="180"></a>
</div> <!-- /#navbar-header -->
<!-- Navigation -->
<div class="collapse navbar-collapse" id="navbar">
<ul class="nav navbar-nav navbar-right" id="main_navigation_menu">
<li class="active"><a href="#header">HOME</a></li>
<li><a href="#about">ABOUT</a></li>
<!-- <li><a href="#portfolio">PORTFOLIO</a></li> -->
<!-- <li><a href="#pricing">PRICING</a></li> -->
<li class="dropdown">
<a class="dropdown-toggle" data-toggle="dropdown" href="#">DOCUMENTATION
<span class="caret"></span></a>
<ul class="dropdown-menu back" id="menu">
<li><a href="#doc" class="text-center">DOCS</a></li>
<li><a href="#demo" class="sub text-center">DEMOS</a></li>
</ul>
</li>
<li><a href="#clients">CLIENT</a></li>
<li class="dropdown">
<a class="dropdown-toggle" data-toggle="dropdown" href="#">SYSTEM
<span class="caret"></span></a>
<ul class="dropdown-menu back" id="menu">
<li class="dashboard"><a href="unavailable.html" class="sub text-center">DASHBOARD</a></li>
<li><a href="#system" class="sub text-center">TECHNOLOGIES</a></li>
<li><a href="#ser" class="sub text-center">SERVICES</a></li>
<li><a href="#sysf" class="sub text-center">FEATURES</a></li>
<!-- <li><a href="#" class="text-center"></a></li> -->
</ul>
</li>
<li><a href="#team">TEAM</a></li>
<li><a href="#footer-top">CONTACT</a></li>
<!-- <li><a href="https://dashboard.hyperperform.me" class="dash"><span>VISIT OUR DASHBOARD</span></a></li> -->
<!-- <li><a href="javadoc/index.html" class="java"><span>JAVADOC</span></a></li> -->
</ul>
</div>
</div>
</nav> <!-- /#navbar -->
<!-- Slider -->
<section id="slider">
<div class="container-full">
<div class="slider" >
<div id="main-slider" class="carousel slide" data-interval="8000" data-pause="null" data-wrap="true" data-keyboard="true" data-ride="carousel">
<ol class="carousel-indicators">
<li data-target="#main-slider" data-slide-to="0" class="active"></li>
<li data-target="#main-slider" data-slide-to="1"></li>
<li data-target="#main-slider" data-slide-to="2"></li>
<li data-target="#main-slider" data-slide-to="3"></li>
<li data-target="#main-slider" data-slide-to="4"></li>
<li data-target="#main-slider" data-slide-to="5"></li>
<li data-target="#main-slider" data-slide-to="6"></li>
<li data-target="#main-slider" data-slide-to="7"></li>
<!-- <li data-target="#main-slider" data-slide-to="8"></li> -->
</ol> <!-- /#carousel-indicators -->
<!-- Carousel items -->
<div class="carousel-inner">
<div class="active item">
<div class="container slide-element">
<div class="row slide-row">
<div class="col-lg-6 col-md-6 col-sm-12 col-xs-12 text-center">
<img class="img-responsive logoSlide" src="img/Logo2.png" alt="">
</div>
<div class="col-lg-6 col-md-6 col-sm-12 col-xs-12">
<div class="content_slide">
<h2>HyperPerform</h2>
<p>Your, open source, automated, performance tracking solution </p>
<h1> Visit our <a href="unavailable.html">Dashboard</a> for a live demo</h1>
</div>
</div>
</div>
</div>
</div>
<div class="item">
<div class="container slide-element">
<div class="row slide-row">
<div class="col-lg-6 col-md-6 col-sm-12 col-xs-12 text-center">
<img class="img-responsive downhigh" src="img/tmp/Work_Man_Sitting.png" alt="" >
</div>
<div class="col-lg-6 col-md-6 col-sm-12 col-xs-12">
<div class="content_slide">
<h2>Manual performance measuring wasting your time?</h2>
<p>Switch over to HyperPerform. <br/>We automatically measure employees performance so that you don't have to.</p>
</div>
</div>
</div>
</div>
</div>
<div class="item">
<div class="container slide-element">
<div class="row slide-row">
<div class="col-lg-6 col-md-6 col-sm-12 col-xs-12 text-center">
<img class="img-responsive down" src="img/dashboard_laptop.PNG" alt="" >
</div>
<div class="col-lg-6 col-md-6 col-sm-12 col-xs-12">
<div class="content_slide">
<h2>At a Glance</h2>
<p>The summary view of our dashboard will make sure that you can easily keep up to date with your progress at a quick glance</p>
</div>
</div>
</div>
</div>
</div>
<div class="item">
<div class="container slide-element">
<div class="row slide-row">
<div class="col-lg-6 col-md-6 col-sm-12 col-xs-12 text-center">
<img class="img-responsive down" src="img/tmp/t.png" alt="" >
</div>
<div class="col-lg-6 col-md-6 col-sm-12 col-xs-12">
<div class="content_slide">
<h2>Want to see the finer details?</h2>
<p>With easy to view details about your integrations who needs anything else?</p>
</div>
</div>
</div>
</div>
</div>
<!--
<div class="item">
<div class="container slide-element">
<div class="row slide-row">
<div class="col-lg-6 col-md-6 col-sm-12 col-xs-12 text-center">
<img class="img-responsive" src="img/tmp/manager_slide.png" alt="">
</div>
<div class="col-lg-6 col-md-6 col-sm-12 col-xs-12">
<div class="content_slide">
<h2>Managers?</h2>
<p>Take the strain off the Managers and HR. We automatically measure employees so you don't have to.</p>
</div>
</div>
</div>
</div>
</div> -->
<div class="item">
<div class="container slide-element">
<div class="row slide-row">
<div class="col-lg-6 col-md-6 col-sm-12 col-xs-12">
<img class="img-responsive down" src="img/managerial.png" alt="" >
</div>
<div class="col-lg-6 col-md-6 col-sm-12 col-xs-12">
<div class="content_slide non-center">
<h2>Managerial Panel</h2>
<ol ><li>Easy to view employee performance, with one click to see the finer details.</li><li>Personalise your employee performance measurements.</li><li>Add new employees.</li></ol>
</div>
</div>
</div>
</div>
</div>
<div class="item">
<div class="container slide-element">
<div class="row slide-row">
<div class="col-lg-6 col-md-6 col-sm-12 col-xs-12">
<img class="img-responsive down" src="img/tmp/forecasting_page.PNG" alt="" >
</div>
<div class="col-lg-6 col-md-6 col-sm-12 col-xs-12">
<div class="content_slide">
<span><h2>We know all jobs are not the same</h2></span>
<p>No worries, with HyperPerforms' forecasting page you can effortlessly personalise the performance measurements for each job description</p>
</div>
</div>
</div>
</div>
</div>
<div class="item">
<div class="container slide-element">
<div class="row slide-row">
<div class="col-lg-6 col-md-6 col-sm-12 col-xs-12">
<img class="img-responsive" src="img/pluggable_platform.png" alt="" >
</div>
<div class="col-lg-6 col-md-6 col-sm-12 col-xs-12">
<div class="content_slide">
<span><h2>Embracing Pluggability </h2></span>
<p>One of the main attractions of the system is that we've strived to make it fully pluggable. With this it makes the system highly configurable to match your needs.</p>
</div>
</div>
</div>
</div>
</div>
<div class="item">
<div class="container slide-element">
<div class="row slide-row">
<div class="col-lg-6 col-md-6 col-sm-12 col-xs-12">
<img class="img-responsive" src="img/g3481.png" alt="" >
</div>
<div class="col-lg-6 col-md-6 col-sm-12 col-xs-12">
<div class="content_slide">
<h2>Device independence</h2>
<p>No matter what device you are on, our stylish HyperPerform dashboard will comply.</p>
</div>
</div>
</div>
</div>
</div>
</div> <!-- /#carousel-inner -->
<!-- Controls -->
<a class="carousel-control left" href="#main-slider" data-slide="prev"><i class="fa fa-angle-left"></i></a>
<a class="carousel-control right" href="#main-slider" data-slide="next"><i class="fa fa-angle-right"></i></a>
</div>
</div>
</div>
</section> <!-- /#slider -->
</header> <!-- /#header -->
<script type="text/javascript">
// $(document).ready(function () {
// $('.carousel').carousel({
// interval: 8000
// });
// $('.carousel').carousel('cycle');
// });
</script>
<!-- about -->
<section id="about">
<div class="container-full">
<div class="container">
<div class="row bm-remove animate" data-anim-type="zoomInUp">
<h2 class="text-center">See us <span class="white">at work</span></h2>
<div class="row bm-remove animate" data-anim-type="fadeIn">
<!-- <div class="col-12 col-lg-2 col-sm-2 left"></div> -->
<div class="col-12 col-lg-4 col-sm-4 col-md-4">
<a onclick="window.location.href='https://waffle.io/HyperPerform'" href="https://waffle.io/HyperPerform"><img class="int" src="img/waffle.svg" height="80px" width="95px">
<h2 style="margin-top: 5%" class="white">Our Issue Board </h2><h3 class="link" >Waffle.io</h3>
<h4 class="sub">Have an issue or solution? Come let us know here.</h4></a>
</div>
<div class="col-12 col-lg-4 col-sm-4 col-md-4">
<a onclick="window.location.href='https://github.com/HyperPerform'" href="https://github.com/HyperPerform"><img class="int" src="img/git.png" height="160px" width="160px">
<h2 style="margin-top: 5%" class="white">Our Organisation </h2><h3 class="link" >GitHub</h3>
<h4 class="sub">Checkout the source code and make a contribution. </h4></a>
</div>
<div class="col-12 col-lg-4 col-sm-4 col-md-4">
<a onclick="window.location.href='https://travis-ci.org/hyperperform'" href="https://travis-ci.org/hyperperform"><img class="int" src="img/travis.png" height="140px" width="140px">
<h2 style="margin-top: 5%" class="white">Our Build Tool </h2><h3 class="link" >Travis</h3>
<h4 class="sub">Our Continuous Integration tool to keep the build in check.</h4></a>
</div>
</div><!-- /row -->
</div>
</div>
</div>
</section> <!-- /about -->
<!-- Modal -->
<div class="modal fade bd-example-modal-lg" id="myModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel">
<div class="modal-dialog modal-lg" role="dialog">
<div class="modal-content ">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
<h4 class="modal-title " id="myModalLabel">Modal title</h4>
</div>
<div class="container">
<div class="modal-body" id="modalDoc" style="height: 400px">
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<!-- documentation -->
<div id="doc">
<div class="container-full">
<div class="container">
<div class="dividerHeading text-center">
<h2 class="section-title">Documentation</h2>
<div class="row">
<div class="col-md-1 col-lg-1" ></div>
<div class="col-md-2 col-lg-2 col-sm-6 col-md-6" id="arb">
<div class="img-box">
<img class=" img-rounded hack" src="img/logo-adobe-pdf.jpg">
</div>
<h3><a href="doc/Architectural_Requirements.pdf">Architectural Requirements</a></h2>
</div>
<div class="col-md-2 col-lg-2 col-sm-6 col-md-6" id="fr">
<div class="img-box">
<img class=" img-rounded hack" src="img/logo-adobe-pdf.jpg">
</div>
<h3><a href="doc/Functional_Requirements.pdf">Functional Requirements</a></h2>
</div>
<div class="col-md-2 col-lg-2 col-sm-6 col-md-6" id="td">
<div class="img-box">
<img class=" img-rounded hack" src="img/logo-adobe-pdf.jpg">
</div>
<h3><a href="doc/testing.pdf">Testing Document</a></h2>
</div>
<div class="col-md-2 col-lg-2 col-sm-6 col-md-6" id="um">
<div class="img-box">
<img class=" img-rounded hack" src="img/logo-adobe-pdf.jpg">
</div>
<h3><a href="doc/user_manual.pdf">User Manual</a></h2>
</div>
<div class="col-md-2 col-lg-2 col-sm-6 col-md-6" id="jd">
<div class="img-box">
<img class=" img-rounded hack" src="img/Java_Logo.png">
</div>
<h3><a href="https://hyperperform.github.io/javadoc">JavaDoc</a></h2>
</div>
<div class="col-md-1 col-lg-1" ></div>
</div>
<script>
$("#fr").click(function(){
// alert();
var iframe = $("<iframe height='110%' width='50%'>");
iframe.attr('src','doc/Functional_Requirements.pdf');
$('#modalDoc').html(iframe);
$("#myModalLabel").html("Functional Requirements");
$("#myModal").modal('show');
});
$("#arb").click(function(){
// alert();
var iframe = $("<iframe height='110%' width='50%'>");
iframe.attr('src','doc/Architectural_Requirements.pdf');
$('#modalDoc').html(iframe);
$("#myModalLabel").html("Architectural Requirements");
$("#myModal").modal('show');
});
$("#td").click(function(){
// alert();
var iframe = $("<iframe height='110%' width='50%'>");
iframe.attr('src','doc/testing.pdf');
$('#modalDoc').html(iframe);
$("#myModalLabel").html("Testing Document");
$("#myModal").modal('show');
});
$("#um").click(function(){
// alert();
var iframe = $("<iframe height='110%' width='50%'>");
iframe.attr('src','doc/user_manual.pdf');
$('#modalDoc').html(iframe);
$("#myModalLabel").html("User Manual");
$("#myModal").modal('show');
});
$("#jd").click(function(){
// alert();
var iframe = $("<iframe height='110%' width='50%'>");
iframe.attr('src','https://hyperperform.github.io/javadoc/');
$('#modalDoc').html(iframe);
$("#myModalLabel").html("JavaDoc");
$("#myModal").modal('show');
});
</script>
</div>
<div class="row" id="demo">
<h2 class="section-title">DEMONSTRATIONS</h2><br/><br/>
<div class="col-6 col-lg-6 col-sm-12 col-md-6 col-xs-12 text-center">
<iframe class="ytube" width="560" height="315" src="https://www.youtube.com/embed/vF2_1iv4QO8" frameborder="0" allowfullscreen></iframe>
</div>
<div class="col-6 col-lg-6 col-sm-12 col-md-6 col-xs-12 text-center">
<iframe class="ytube" width="560" height="315" src="https://www.youtube.com/embed/fW_qWJuPtzA" frameborder="0" allowfullscreen></iframe>
</div>
</div>
</div>
</div>
</div>
<!-- /documentation -->
<!-- Start clients -->
<div id="clients">
<div class="container-full">
<div class="container">
<div class="row sub_content bm-remove animate" data-anim-type="fadeInUpLarge">
<div class="col-md-12">
<div class="dividerHeading text-center">
<h2 class="section-title">Our Client</h2>
<h3 class="section-subtitle"><a href="http://www.magnabc.co.za/" style="color:white">Magna BC</a></h3>
<div class="our_clients">
<div class="col-xs-12 col-sm-12 col-md-8 col-lg-8"><a href="http://www.magnabc.co.za/"><img src="img/magna_artwork.png" style="padding-right: 0"></a></div>
</div>
</div>
</div>
<br/><br/>
<h3 class="section-subtitle">A special thanks to Mr. Schalk Lotz</h3>
</div>
</div>
</div>
</div>
<!-- End clients -->
<!-- </section> -->
<!-- End testimonial-clients section -->
<!-- System -->
<div id="system">
<div class="container-full">
<h1 class="text-center white">Technology Stack</h1>
<div class="row">
<!-- FRONT -->
<<!-- div class="col-xs-12 col-sm-12 col-md-2 col-lg-2" >
<img style="margin: -25px 30px" height="150px" width="200px" src="img/logos/node.png">
</div>
<div class="col-xs-12 col-sm-12 col-md-2 col-lg-2" >
<img style="margin: -20px 20px" height="150px" width="200px" src="img/logos/gulp.png">
</div>
<div class="col-xs-12 col-sm-12 col-md-2 col-lg-2" >
<img style="margin: 0 50px" height="250px" width="200px" src="img/logos/Angular.png">
</div>
<div class="col-xs-12 col-sm-12 col-md-2 col-lg-2" >
<img style="margin: -10px 120px" height="80px" width="80px" src="img/logos/bootstrap.png">
</div>
<div class="col-xs-12 col-sm-12 col-md-2 col-lg-2" >
<img style="margin: -20px 68px" height="150px" width="150px" src="img/logos/sass.png.png">
</div>
<div class="col-xs-12 col-sm-12 col-md-2 col-lg-2">
<img style="margin: -10px auto" height="70px" width="70px" src="img/logos/jquery.gif">
</div> -->
<img src="img/logos/tech.png" style="width: 90% !important; margin: -5% auto;" >
</div>
<!-- BACK -->
<!-- <div class="row">
<div class="col-xs-2 col-sm-2 col-md-2 col-lg-2" >
<img style="margin: -45px 60px" height="100px" width="100px" src="img/logos/javaee.png">
</div>
<div class="col-xs-2 col-sm-2 col-md-2 col-lg-2" >
<img style="margin: -20px 20px" height="120px" width="150px" src="img/logos/maven.png">
</div>
<div class="col-xs-2 col-sm-2 col-md-2 col-lg-2" >
<img style="margin: -65px 30px" height="100px" width="150px" src="img/logos/postgresql.png">
</div>
<div class="col-xs-2 col-sm-2 col-md-2 col-lg-2" >
<img style="margin: -30px 20px" height="160px" width="170px" src="img/logos/wildfly.png">
</div>
<div class="col-xs-2 col-sm-2 col-md-2 col-lg-2" >
<img style="margin: -20px 50px" height="150px" width="120px" src="img/logos/resteasy.gif">
</div>
<div class="col-xs-2 col-sm-2 col-md-2 col-lg-2" >
<img style="margin: -70px auto" height="200px" width="150px" src="img/logos/ActiveMQ2.png">
</div>
</div>
-->
<!-- Services -->
<div id="ser" class="row">
<h1 class="text-center white">Services</h1><br/><br/><br/><br/><br/>
<!-- <div class="col-xs-2 col-sm-2 col-md-2 col-lg-2" >
<img style="margin: -50px 30px" height="150px" width="150px" src="img/logos/digitalOcean.png.png">
</div>
<div class="col-xs-2 col-sm-2 col-md-2 col-lg-2" >
<img style="margin: -30px 20px" height="150px" width="170px" src="img/logos/github.png">
</div>
<div class="col-xs-2 col-sm-2 col-md-2 col-lg-2" >
<img style="margin: -25px 50px" height="150px" width="160px" src="img/logos/travisci.png">
</div>
<div class="col-xs-2 col-sm-2 col-md-2 col-lg-2" >
<img style="margin: -50px 70px" height="150px" width="120px" src="img/logos/wtextblack.png">
</div>
<div class="col-xs-2 col-sm-2 col-md-2 col-lg-2" >
<img style="margin: -60px 50px" height="150px" width="120px" src="img/logos/letsencrypt.png">
</div>
<div class="col-xs-2 col-sm-2 col-md-2 col-lg-2" >
<img style="margin: -70px auto" height="200px" width="150px" src="img/logos/docker.png">
</div> -->
<img src="img/logos/services.png" style="width: 90% !important; margin: -5% auto;" >
</div>
<div id="sysf">
<div class="container">
<br/><br/><br/><br/>
<h1 class="text-center white">SYSTEM FEATURES</h1>
<div class="row">
<div class="col-md-4 col-lg-4 col-xs-12 col-sm-12 text-center">
<i class="fa fa-puzzle-piece fa-5x text-center green" aria-hidden="true"></i>
<h3 class="black"><b>Pluggability</b></h3>
<h4 class="black"> Our entire system is fully pluggable. Using dependency injection we are able to keep each subsystem independent. Thus one could easily modify or replace an entire subsystem with minimal modifications.</h4>
</div>
<div class="col-md-4 col-lg-4 col-xs-12 col-sm-12 text-center">
<i class="fa fa-magic fa-5x text-center teal " aria-hidden="true"></i>
<h3 class="black"><b>Algorithms</b></h3>
<h4 class="black">
Through the strategy design pattern we have acquired the ability to easily add in new algorithms. One use these algorithms interchangeably to quantify employee performance.
</h4>
</div>
<div class="col-md-4 col-lg-4 col-xs-12 col-sm-12 text-center">
<i class="fa fa-wrench fa-5x gold" aria-hidden="true"></i>
<h3 class="black"><b>Maintainability</b></h3>
<h4 class="black"> Due to the highly pluggable nature of our system, you can easily swap out components without affecting the other sub-systems. This can lead to easier expansion, enhancement or reparation of the system. </h4>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- System -->
<section id="team">
<div class="container-full">
<div class="row text-center">
<h1 style="color:white">Meet the team who made it all happen </h1>
</div><!-- /row -->
<div class="row bm-remove animate space-top" data-anim-type="fadeIn">
<div class="container">
<!-- <div class="col-lg-3 col-md-3 col-sm-4 col-xs-12 profile bm-remove animate" data-anim-type="bounceInRight" align="center">
<div class="img-box">
<img src="img/cmd.jpg" class="img-responsive img-rounded hack" height="250px" width="200px"/>
<ul class="text-center">
<a data-toggle="tooltip" title="LinkedIn" href="https://za.linkedin.com/in/jason-gordon-14b359126"><li><i class="fa fa-linkedin"></i></li></a>
<a data-toggle="tooltip" title="GitHub" href="https://github.com/JasonDGordon"><li><i class="fa fa-github"></i></li></a>
<a data-toggle="tooltip" title="Mail Me" href="mailto:gordz.gordon@gmail.com"><li><i class="fa fa-envelope"></i></li></a>
</ul>
</div>
<h1>Claudio da Silva</h1>
<h2>The Plant</h2>
</div> -->
<div class="col-lg-4 col-md-4 col-sm-4 col-xs-12 profile bm-remove animate" data-anim-type="bounceInRight" align="center">
<div class="img-box">
<img src="img/rohan.jpg" class="img-responsive img-rounded hack" height="250px" width="200px"/>
<ul class="text-center">
<a data-toggle="tooltip" title="LinkedIn" href="https://www.linkedin.com/in/rohan-chhipa-535384124"><li><i class="fa fa-linkedin"></i></li></a>
<a data-toggle="tooltip" title="GitHub" href="https://github.com/RohanChhipa"><li><i class="fa fa-github"></i></li></a>
<a data-toggle="tooltip" title="Mail Me" href="mailto:rohan.chhipa@live.com"><li><i class="fa fa-envelope"></i></li></a>
</ul>
</div>
<h1>Rohan Chhipa</h1>
<h2>The Leader</h2>
</div>
<div class="col-lg-4 col-md-4 col-sm-4 col-xs-12 profile bm-remove animate" data-anim-type="bounceInRight" align="center">
<div class="img-box">
<img src="img/avi.png" class="img-responsive img-rounded hack" height="250px" width="200px"/>
<ul class="text-center">
<a data-toggle="tooltip" title="LinkedIn" href="https://www.linkedin.com/in/avinash-singh-0a4936124"><li><i class="fa fa-linkedin"></i></li></a>
<a data-toggle="tooltip" title="GitHub" href="https://github.com/AvinashSingh786"><li><i class="fa fa-github"></i></li></a>
<a data-toggle="tooltip" title="Mail Me" href="mailto:tashan.avi@gmail.com"><li><i class="fa fa-envelope"></i></li></a>
</ul>
</div>
<h1>Avinash Singh</h1>
<h2>The All-Rounder</h2>
</div>
<div class="col-lg-4 col-md-4 col-sm-4 col-xs-12 profile bm-remove animate" data-anim-type="bounceInRight" align="center">
<div class="img-box">
<img src="img/jason.jpg" class="img-responsive img-rounded hack" height="250px" width="200px"/>
<ul class="text-center">
<a data-toggle="tooltip" title="LinkedIn" href="https://za.linkedin.com/in/jason-gordon-14b359126"><li><i class="fa fa-linkedin"></i></li></a>
<a data-toggle="tooltip" title="GitHub" href="https://github.com/JasonDGordon"><li><i class="fa fa-github"></i></li></a>
<a data-toggle="tooltip" title="Mail Me" href="mailto:gordz.gordon@gmail.com"><li><i class="fa fa-envelope"></i></li></a>
</ul>
</div>
<h1>Jason Gordon</h1>
<h2>The Team-Worker</h2>
</div>
</div><!-- /row -->
</div>
</div><!-- /container -->
</section>
<!-- footer top -->
<footer id="footer-top">
<div class="container-full">
<div class="container">
<div class="row bm-remove animate" data-anim-type="bounceIn">
<div class="footer-text">
<h1>Tell us what you think</h1>
<p>Want to know more or provide feedback</p>
<a href="contact.html" class="btn btn-red">Contact Us</a>
</div>
</div>
</div>
</div>
</footer> <!-- footer-top -->
<!-- footer -->
<footer id="footer">
<div class="container-full">
<div class="container">
<div class="bm-remove animate" data-anim-type="fadeInDownLarge">
<div class="col-xs-12 col-sm-4 col-md-4">
<div class="float_left">
<br/>
<a href="https://github.com/HyperPerform"><img src="img/Logo2.png" style="float: left; margin-top: -2%" class="img-circle" width="40" height="40"><div id="year"><script>$("#year").html("<h4 style='color:#FFF;'> HyperPerform " + new Date().getFullYear() + "</h4>");</script></div></a>
</div>
</div>
<div class="col-xs-12 col-sm-8 col-md-8 text-center">
<div class="float_right">
<p> Developed by <span style="color:white"> CodusMaximus <img src="img/cm.jpg" style="float: right; margin-top: -2%" class="img-circle" width="40" height="40"></span></p>
</div>
</div>
</div>
<!-- <div class="span1">
<a id="gototop" class="gototop pull-right" href="#"><i class="icon-angle-up"></i></a>
</div> -->
</div>
</div>
</footer> <!-- /#footer -->
</body>
</html>