-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
1655 lines (1567 loc) · 69.3 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
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
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Society Automation System</title>
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<meta content="" name="keywords">
<meta content="" name="description">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Favicons -->
<link href="img/favicon.png" rel="icon">
<link href="img/apple-touch-icon.png" rel="apple-touch-icon">
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,400,400i,600,700|Raleway:300,400,400i,500,500i,700,800,900" rel="stylesheet">
<!-- Bootstrap CSS File -->
<link href="lib/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<!-- Font API -->
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Sniglet">
<style>
.IBM{
font-family: 'Sniglet', serif;
font-size: 25px;
}
</style>
<!-- Libraries CSS Files -->
<link href="lib/nivo-slider/css/nivo-slider.css" rel="stylesheet">
<link href="lib/owlcarousel/owl.carousel.css" rel="stylesheet">
<link href="lib/owlcarousel/owl.transitions.css" rel="stylesheet">
<link href="lib/font-awesome/css/font-awesome.min.css" rel="stylesheet">
<link href="lib/animate/animate.min.css" rel="stylesheet">
<link href="lib/venobox/venobox.css" rel="stylesheet">
<link rel="stylesheet" href="css/social_css.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.7.2/css/all.css" integrity="sha384-fnmOCqbTlWIlj8LyTjo7mOUStjsKC4pOpQbqyi7RrhN7udi9RwhKkMHpvLbHG9Sr" crossorigin="anonymous">
<!-- Nivo Slider Theme -->
<link href="css/nivo-slider-theme.css" rel="stylesheet">
<!-- Main Stylesheet File -->
<link href="css/style.css" rel="stylesheet">
<!-- Responsive Stylesheet File -->
<link href="css/responsive.css" rel="stylesheet">
<!-- =======================================================
Theme Name: eBusiness
Theme URL: https://bootstrapmade.com/ebusiness-bootstrap-corporate-template/
Author: BootstrapMade.com
License: https://bootstrapmade.com/license/
======================================================= -->
<!--<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>-->
<style>
.dropdown-menu{
background-color: #595959;
color: solid white;
}
.fa-angle-right{
color: red;
}
.conbtn{
background: transparent;
border: none;
outline: none;
color: #fff;
background: #4dd2ff;
padding: 10px 20px;
cursor: pointer;
border-radius: 30px;
height: 40px;
width: 150px;
font-size: 18px solid;
}
.com{
border-radius: 6px;
height: 40px;
width: 280px;
}
.select{
border-radius: 6px;
width: 280px;
height: 40px;
}
#combbrief{
border-radius: 6px;
}
.img1{
height: 400px;
width: 900px
}
</style>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/js/bootstrap.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<!-- -->
</head>
<body data-spy="scroll" data-target="#navbar-example">
<?php
if(isset($_POST['add'])){
$name=$_POST['txtName'];
$email=$_POST['txtEmail'];
$subject=$_POST['txtSubject'];
$msg=$_POST['txtMessage'];
$con = mysqli_connect('localhost','root','','sas_db');
$quy = "INSERT INTO `contact_us`(`con_name`, `con_email`, `con_sub`, `com_msg`) VALUES ('$name','$email','$subject','$msg')";
$run = mysqli_query($con,$quy);
if ($run == TRUE)
{
?>
<script type="text/javascript">alert('contact details added');</script>
<?php
}
else
{
?>
<script type="text/javascript">alert('Error! In the Insertion');</script>
<?php
}
}
?>
<!--Feedback Insert code -->
<?php
if(isset($_POST['submit'])){
$name=$_POST['feedUser'];
$email=$_POST['feedEmail'];
$rate=$_POST['txtRate'];
$subinfo=$_POST['txtSyS'];
$msg=$_POST['txtFEEDsys'];
$con = mysqli_connect('localhost','root','','sas_db');
$quy = "INSERT INTO `feedback`(`feed_name`, `feed_email`, `feed_rate`, `feed_info`, `msg`) VALUES ('$name','$email','$rate','$subinfo','$msg')";
$run = mysqli_query($con,$quy);
if ($run == TRUE)
{
?>
<script type="text/javascript">alert('YOUR FEEDBACK IS SUBMITED SUCCESSFULLY !Thank You');</script>
<?php
}
else
{
?>
<script type="text/javascript">alert('Error! In the Insertion');</script>
<?php
}
}
?>
<!-- -->
<!-- <div id="preloader"></div> -->
<header>
<!-- header-area start -->
<div id="sticker" class="header-area">
<div class="container">
<div class="row">
<div class="col-md-12 col-sm-12">
<!-- Navigation -->
<nav class="navbar navbar-default">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target=".bs-example-navbar-collapse-1" aria-expanded="false">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<!-- Brand -->
<a class="navbar-brand page-scroll sticky-logo IBM" href="index.php">
<!-- Uncomment below if you prefer to use an image logo -->
<h1 class="IBM"><span>Society</span> Automation System</h1>
</a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse main-menu bs-example-navbar-collapse-1" id="navbar-example">
<ul class="nav navbar-nav navbar-right">
<li class="active">
<a class="page-scroll IBM" href="index.php">HOME</a>
</li>
<li>
<a class="page-scroll IBM" href="#about">ABOUT</a>
</li>
<li class="dropdown">
<a class="dropdown-toggle IBM" data-toggle="dropdown" href="#">LOGIN AS<span class="caret"></span></a>
<ul class="dropdown-menu">
<li><a class="page-drr" href="alogin.php">Admin</a></li>
<li><a class="page-drr" href="secretary_login.php">Secretary</a></li>
<li><a class="page-drr" href="Member_login.php">Member</a></li>
<li><a class="page-drr" href="tenant_login.php">Rental</a></li>
</ul>
</li>
<li class="dropdown">
<a class="dropdown-toggle IBM" data-toggle="dropdown" href="#">REACH-US<span class="caret"></span></a>
<ul class="dropdown-menu">
<li><a class="page-drr" href="noticeboard.php">Notice Board</a></li>
<li><a class="page-drr" href="complain.php">Online Complain</a></li>
<li><a class="page-drr" href="rent-service.php">RENT+Service</a></li>
<li><a class="page-drr" href="sales_inquiery.php">Sales Enquiry</a></li>
<li><a class="page-drr" href="Client-Details.php">Our Client</a></li>
<li><a class="page-drr" href="Partner.php">Our Partner</a></li>
</ul>
</li>
<li>
<a class="page-scroll IBM" href="#blog">NEWS</a>
</li>
<li>
<a class="page-scroll IBM" href="#contact">CONTACT US</a>
</li>
</ul>
</div>
<!-- navbar-collapse -->
</nav>
<!-- END: Navigation -->
</div>
</div>
</div>
</div>
<!-- header-area end -->
</header>
<!-- header end -->
<!-- Start Slider Area -->
<div id="home" class="slider-area">
<div class="bend niceties preview-2">
<div id="ensign-nivoslider" class="slides">
<img src="img/slider/slide1.jpg" alt="" title="#slider-direction-1" />
<img src="img/slider/slide2.jpg" alt="" title="#slider-direction-2" />
<img src="img/slider/slide3.jpg" alt="" title="#slider-direction-3" />
</div>
<!-- direction 1 -->
<div id="slider-direction-1" class="slider-direction slider-one">
<div class="container">
<div class="row">
<div class="col-md-12 col-sm-12 col-xs-12">
<div class="slider-content">
<!-- layer 1 -->
<div class="layer-1-1 hidden-xs wow slideInDown" data-wow-duration="2s" data-wow-delay=".2s">
<h2 class="title1">Sustainable Luxuri </h2>
</div>
<!-- layer 2 -->
<div class="layer-1-2 wow slideInUp" data-wow-duration="2s" data-wow-delay=".1s">
<h1 class="title2">Helping Business Security & Peace of Mind for Your Family</h1>
</div>
<!-- layer 3 -->
<div class="layer-1-3 hidden-xs wow slideInUp" data-wow-duration="2s" data-wow-delay=".2s">
<a class="ready-btn right-btn page-scroll" href="#services">See Services</a>
<a class="ready-btn page-scroll" href="http://localhost:90/wordpress/">Learn More</a>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- direction 2 -->
<div id="slider-direction-2" class="slider-direction slider-two">
<div class="container">
<div class="row">
<div class="col-md-12 col-sm-12 col-xs-12">
<div class="slider-content text-center">
<!-- layer 1 -->
<div class="layer-1-1 hidden-xs wow slideInUp" data-wow-duration="2s" data-wow-delay=".2s">
<h2 class="title1">Affordable</h2>
</div>
<!-- layer 2 -->
<div class="layer-1-2 wow slideInUp" data-wow-duration="2s" data-wow-delay=".1s">
<h1 class="title2">We're In The Business Of Get Quality Business Service</h1>
</div>
<!-- layer 3 -->
<div class="layer-1-3 hidden-xs wow slideInUp" data-wow-duration="2s" data-wow-delay=".2s">
<a class="ready-btn right-btn page-scroll" href="#services">See Services</a>
<a class="ready-btn page-scroll" href="http://localhost:90/wordpress/">Learn More</a>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- direction 3 -->
<div id="slider-direction-3" class="slider-direction slider-two">
<div class="container">
<div class="row">
<div class="col-md-12 col-sm-12 col-xs-12">
<div class="slider-content">
<!-- layer 1 -->
<div class="layer-1-1 hidden-xs wow slideInUp" data-wow-duration="2s" data-wow-delay=".2s">
<h2 class="title1">Own Earth Sky Too</h2>
</div>
<!-- layer 2 -->
<div class="layer-1-2 wow slideInUp" data-wow-duration="2s" data-wow-delay=".1s">
<h1 class="title2">Helping Business Security & Peace of Mind for Your Family</h1>
</div>
<!-- layer 3 -->
<div class="layer-1-3 hidden-xs wow slideInUp" data-wow-duration="2s" data-wow-delay=".2s">
<a class="ready-btn right-btn page-scroll" href="#services">See Services</a>
<a class="ready-btn page-scroll" href="http://localhost:90/wordpress/">Learn More</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- End Slider Area -->
<!-- Start About area -->
<div id="about" class="about-area area-padding">
<div class="container">
<div class="row">
<div class="col-md-12 col-sm-12 col-xs-12">
<div class="section-headline text-center">
<h2>About Us</h2>
</div>
</div>
</div>
<div class="row">
<!-- single-well start-->
<div class="col-md-6 col-sm-6 col-xs-12">
<div class="well-left">
<div class="single-well">
<a href="#">
<img class="img1" src="img/about/img1.jpg" alt="">
</a>
</div>
</div>
</div>
<!-- single-well end-->
<div class="col-md-6 col-sm-6 col-xs-12">
<div class="well-middle">
<div class="single-well">
<!-- <a href="#">
<h4 class="sec-head">Society Automation System</h4>
</a>
<p>
The Society Automation System is a website/application which is being developed to automate the work of the society which will help to switch all the manual work to digital work. The system would be focusing on the data of various flat holders such as Their maintenance, bills & etc and will provide an online platform to pay the dues on the similar stage their pay slips will be shared directly to the user by mail-id or through a message. By doing this the time can be saved & lots of paper work can be reduced. In addition to that the system would also be having a complain box which will help the people to directly drag the attention of society mentors towards the issues and people can view the status regarding the same.
</p> -->
<a href="index.php">
<h4 class="sec-head"></h4>
</a>
<p>
<b>
The Society Automation System is a website/application which is being developed to automate the work of the society which will help to switch all the manual work to digital work.
</b>
</p><br>
<p><b><i>
The system would be focusing on the data of various flat holders such as Their maintenance, bills & etc and will provide an online platform to pay the dues on the similar stage their pay slips will be shared directly to the user by mail-id or through a message.
</i></b></p><br>
<p><b>
By doing this the time can be saved & lots of paper work can be reduced.
</b></p><br>
<p><b><i>
In addition to that the system would also be having a complain box which will help the people to directly drag the attention of society mentors towards the issues and people can view the status regarding the same.
</i></b></p>
</div>
</div>
</div>
<!-- End col-->
</div>
</div>
</div>
<!-- End About area -->
<!-- Start Service area -->
<div id="services" class="services-area area-padding">
<div class="container">
<div class="row">
<div class="col-md-12 col-sm-12 col-xs-12">
<div class="section-headline services-head text-center">
<h2>Our Services</h2>
</div>
</div>
</div>
<div class="row text-center">
<div class="services-contents">
<!-- Start Left services -->
<div class="col-md-4 col-sm-4 col-xs-12">
<div class="about-move">
<div class="services-details">
<div class="single-services">
<a class="services-icon" href="#">
<i class="fa fa-building"></i>
</a>
<h4>Collecting Maintenance</h4>
<p align="justify">
will have to make sure the prototype looks finished by inserting text or photo.make sure the prototype looks finished by.
</p>
</div>
</div>
<!-- end about-details -->
</div>
</div>
<div class="col-md-4 col-sm-4 col-xs-12">
<div class="about-move">
<div class="services-details">
<div class="single-services">
<a class="services-icon" href="#">
<i class="fas fa-users-cog"></i>
</a>
<h4>Manage Rentals & sales Info</h4>
<p align="justify">
will have to make sure the prototype looks finished by inserting text or photo.make sure the prototype looks finished by.
</p>
</div>
</div>
<!-- end about-details -->
</div>
</div>
<div class="col-md-4 col-sm-4 col-xs-12">
<!-- end col-md-4 -->
<div class=" about-move">
<div class="services-details">
<div class="single-services">
<a class="services-icon" href="#">
<i class="fa fa-life-ring"></i>
</a>
<h4>Account Summary</h4>
<p align="justify">
will have to make sure the prototype looks finished by inserting text or photo.make sure the prototype looks finished by.
</p>
</div>
</div>
<!-- end about-details -->
</div>
</div>
<div class="col-md-4 col-sm-4 col-xs-12">
<!-- end col-md-4 -->
<div class=" about-move">
<div class="services-details">
<div class="single-services">
<a class="services-icon" href="#">
<i class="fa fa-info"></i>
</a>
<h4>24*7 Online Service</h4>
<p align="justify">
will have to make sure the prototype looks finished by inserting text or photo.make sure the prototype looks finished by.
</p>
</div>
</div>
<!-- end about-details -->
</div>
</div>
<!-- End Left services -->
<div class="col-md-4 col-sm-4 col-xs-12">
<!-- end col-md-4 -->
<div class=" about-move">
<div class="services-details">
<div class="single-services">
<a class="services-icon" href="#">
<i class="fas fa-exchange-alt"></i>
</a>
<h4>Online Transctions</h4>
<p align="justify">
will have to make sure the prototype looks finished by inserting text or photo.make sure the prototype looks finished by.
</p>
</div>
</div>
<!-- end about-details -->
</div>
</div>
<!-- End Left services -->
<div class="col-md-4 col-sm-4 col-xs-12">
<!-- end col-md-4 -->
<div class=" about-move">
<div class="services-details">
<div class="single-services">
<a class="services-icon" href="#">
<i class="fas fa-tools"></i>
</a>
<h4>Managing Repairs & Maintenance</h4>
<p align="justify">
will have to make sure the prototype looks finished by inserting text or photo.make sure the prototype looks finished by.
</p>
</div>
</div>
<!-- end about-details -->
</div>
</div>
</div>
</div>
</div>
</div>
<!-- End Service area -->
<!-- our-skill-area start -->
<!-- <div class="our-skill-area fix hidden-sm">
<div class="test-overly"></div>
<div class="skill-bg area-padding-2">
<div class="container">
<div class="row">
<div class="skill-text">
<div class="col-xs-12 col-sm-3 col-md-3 text-center">
<div class="single-skill">
<div class="progress-">
<input type="text" class="knob" value="0" data-rel="90" data-linecap="round" data-width="175" data-bgcolor="#fff" data-fgcolor="#3EC1D5" data-thickness=".20" data-readonly="true" disabled>
<h3 class="progress-h4">Safe Transctions</h3>
</div>
</div>
</div>
<div class="col-xs-12 col-sm-3 col-md-3 text-center">
<div class="single-skill">
<div class="progress-">
<input type="text" class="knob" value="0" data-rel="85" data-linecap="round" data-width="175" data-bgcolor="#fff" data-fgcolor="#3EC1D5" data-thickness=".20" data-readonly="true" disabled>
<h3 class="progress-h4">Graphics Design</h3>
</div>
</div>
</div>
<div class="col-xs-12 col-sm-3 col-md-3 text-center">
<div class="single-skill">
<div class="progress-">
<input type="text" class="knob" value="0" data-rel="95" data-linecap="round" data-width="175" data-bgcolor="#fff" data-fgcolor="#3EC1D5" data-thickness=".20" data-readonly="true" disabled>
<h3 class="progress-h4">Accuracy</h3>
</div>
</div>
</div>
single-skill end
<div class="col-xs-12 col-sm-3 col-md-3 text-center">
<div class="single-skill">
<div class="-circular">
<input type="text" class="knob" value="0" data-rel="65" data-linecap="round" data-width="175" data-bgcolor="#fff" data-fgcolor="#3EC1D5" data-thickness=".20" data-readonly="true" disabled>
<h3 class="progress-h4">Notificatin</h3>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>-->
<!-- our-skill-area end -->
<!-- Faq area start -->
<div class="faq-area area-padding">
<div class="container">
<div class="row">
<div class="col-md-12 col-sm-12 col-xs-12">
<div class="section-headline text-center">
<h2>Faq Question</h2>
</div>
</div>
</div>
<div class="row">
<div class="col-md-6 col-sm-6 col-xs-12">
<div class="faq-details">
<div class="panel-group" id="accordion">
<!-- Panel Default -->
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="check-title">
<a data-toggle="collapse" class="active" data-parent="#accordion" href="#check1">
<span class="acc-icons"></span>What is Society Automation System?
</a>
</h4>
</div>
<div id="check1" class="panel-collapse collapse in">
<div class="panel-body">
<p>
It is an online portal designed and developed to take over the everyday manual task of the society.
</p>
</div>
</div>
</div>
<!-- End Panel Default -->
<!-- Panel Default -->
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="check-title">
<a data-toggle="collapse" data-parent="#accordion" href="#check2">
<span class="acc-icons"></span> Why to use Society Automation System ?
</h4>
</div>
<div id="check2" class="panel-collapse collapse">
<div class="panel-body">
<p>
We are making society automation system to lower down the daily tedious task of the society and make it more easy for the people of the society to use it. And also let the work of the society be transparent.
</p>
</div>
</div>
</div>
<!-- End Panel Default -->
<!-- Panel Default -->
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="check-title">
<a data-toggle="collapse" data-parent="#accordion" href="#check3">
<span class="acc-icons"></span> How to use Society Automation System?
</a>
</h4>
</div>
<div id="check3" class="panel-collapse collapse ">
<div class="panel-body">
<p>
It’s very easy to use. Just log in as a user, secretary or admin and our services are ready to use.
</p>
</div>
</div>
</div>
<!-- End Panel Default -->
<!-- Panel Default -->
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="check-title">
<a data-toggle="collapse" data-parent="#accordion" href="#check4">
<span class="acc-icons"></span>Is it free to use Society Automation System?
</a>
</h4>
</div>
<div id="check4" class="panel-collapse collapse">
<div class="panel-body">
<p>
No , we have subscription plans for our system according to the size of the society which are comparatively lesser than other competitive system .
</p>
</div>
</div>
</div>
<!-- End Panel Default -->
</div>
</div>
</div>
<div class="col-md-6 col-sm-6 col-xs-12">
<div class="tab-menu">
<!-- Nav tabs -->
<ul class="nav nav-tabs" role="tablist">
<li class="active">
<a href="#p-view-1" role="tab" data-toggle="tab">Project</a>
</li>
<li>
<a href="#p-view-2" role="tab" data-toggle="tab">Planning</a>
</li>
<li>
<a href="#p-view-3" role="tab" data-toggle="tab">Success</a>
</li>
</ul>
</div>
<div class="tab-content">
<div class="tab-pane active" id="p-view-1">
<div class="tab-inner">
<div class="event-content head-team">
<h4>Society Automation System</h4>
<p>
Our main aim is to digitalize the paper work and reduce the human efforts needed to maintain the society . Society Automation System is driven by the motive of helping the people of the society and maintain the daily task .
</p>
</div>
</div>
</div>
<div class="tab-pane" id="p-view-2">
<div class="tab-inner">
<div class="event-content head-team">
<h4>Website Planning</h4>
<p>
We have designed and developed this website keeping our end user in perspective and in such a way that it becomes easy for our user to use our system . </p>
</div>
</div>
</div>
<div class="tab-pane" id="p-view-3">
<div class="tab-inner">
<div class="event-content head-team">
<h4>Success</h4>
<p>
We hope that our project helps our user and societies and reduce the headache of maintaining the society. </p>
</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- end Row -->
</div>
</div>
<!-- End Faq Area -->
<!-- Start Wellcome Area -->
<div class="wellcome-area">
<div class="well-bg">
<div class="test-overly"></div>
<div class="container">
<div class="row">
<div class="col-md-12 col-sm-12 col-xs-12">
<div class="wellcome-text">
<div class="well-text text-center">
<h2>Welcome To Our eSocitey Automation System</h2>
<p>
To use SAS(eScocietyc Automation System) Services
</p>
<div class="subs-feilds">
<div class="suscribe-input">
<input type="email" class="email form-control width-80" id="sus_email" placeholder="Email">
<button type="submit" id="sus_submit" class="add-btn width-20">Subscribe</button>
<div id="msg_Submit" class="h3 text-center hidden"></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- End Wellcome Area -->
<!-- Start team Area -->
<!--<div id="team" class="our-team-area area-padding">
<div class="container">
<div class="row">
<div class="col-md-12 col-sm-12 col-xs-12">
<div class="section-headline text-center">
<h2>Our special Team</h2>
</div>
</div>
</div>
<div class="row">
<div class="team-top">
<div class="col-md-3 col-sm-3 col-xs-12">
<div class="single-team-member">
<div class="team-img">
<a href="#">
<img src="img/team/1.jpg" alt="">
</a>
<div class="team-social-icon text-center">
<ul>
<li>
<a href="#">
<i class="fa fa-facebook"></i>
</a>
</li>
<li>
<a href="#">
<i class="fa fa-twitter"></i>
</a>
</li>
<li>
<a href="#">
<i class="fa fa-instagram"></i>
</a>
</li>
</ul>
</div>
</div>
<div class="team-content text-center">
<h4>Jhon Mickel</h4>
<p>Seo</p>
</div>
</div>
</div>
<div class="col-md-3 col-sm-3 col-xs-12">
<div class="single-team-member">
<div class="team-img">
<a href="#">
<img src="img/team/2.jpg" alt="">
</a>
<div class="team-social-icon text-center">
<ul>
<li>
<a href="#">
<i class="fa fa-facebook"></i>
</a>
</li>
<li>
<a href="#">
<i class="fa fa-twitter"></i>
</a>
</li>
<li>
<a href="#">
<i class="fa fa-instagram"></i>
</a>
</li>
</ul>
</div>
</div>
<div class="team-content text-center">
<h4>Andrew Arnold</h4>
<p>Web Developer</p>
</div>
</div>
</div>
<div class="col-md-3 col-sm-3 col-xs-12">
<div class="single-team-member">
<div class="team-img">
<a href="#">
<img src="img/team/3.jpg" alt="">
</a>
<div class="team-social-icon text-center">
<ul>
<li>
<a href="#">
<i class="fa fa-facebook"></i>
</a>
</li>
<li>
<a href="#">
<i class="fa fa-twitter"></i>
</a>
</li>
<li>
<a href="#">
<i class="fa fa-instagram"></i>
</a>
</li>
</ul>
</div>
</div>
<div class="team-content text-center">
<h4>Lellien Linda</h4>
<p>Web Design</p>
</div>
</div>
</div>
<div class="col-md-3 col-sm-3 col-xs-12">
<div class="single-team-member">
<div class="team-img">
<a href="#">
<img src="img/team/4.jpg" alt="">
</a>
<div class="team-social-icon text-center">
<ul>
<li>
<a href="#">
<i class="fa fa-facebook"></i>
</a>
</li>
<li>
<a href="#">
<i class="fa fa-twitter"></i>
</a>
</li>
<li>
<a href="#">
<i class="fa fa-instagram"></i>
</a>
</li>
</ul>
</div>
</div>
<div class="team-content text-center">
<h4>Jhon Powel</h4>
<p>Seo Expert</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>-->
<!-- End Team Area -->
<!-- Start reviews Area
<div class="reviews-area hidden-xs">
<div class="work-us">
<div class="work-left-text">
<a href="#">
<img src="img/about/2.jpg" alt="">
</a>
</div>
<div class="work-right-text text-center">
<h2>working with us</h2>
<h5>Design, Ready Home, Construction and Co-operate Outstanding Buildings.</h5>
<a href="#contact" class="ready-btn">Contact us</a>
</div>
</div>
</div> -->
<div class="container">
<div class="row">
<div class="col-sm-6 wow fadeInDown animated" data-wow-duration="1000ms" data-wow-delay="0ms" style="visibility: visible; animation-duration: 1000ms; animation-delay: 0ms; animation-name: fadeInDown;">
<img src="img/conn_two.png" class="img-responsive" alt="">
</div>
<div class="col-sm-6 padding-top wow fadeInDown animated" data-wow-duration="1000ms" data-wow-delay="0ms" style="visibility: visible; animation-duration: 1000ms; animation-delay: 0ms; animation-name: fadeInDown;">
<br>
<h4 style="text-align: justify;">Are you part of the Management Committee of your Housing Society or Apartment?</h4>
<p style="text-align: justify;"><I>Following are the feature can be available for you,<br> if you society or apartment is registered with SAS</I></p>
<ul class="elements">
<li class="wow fadeInUp animated" data-wow-duration="900ms" data-wow-delay="100ms" style="visibility: visible; animation-duration: 900ms; animation-delay: 100ms; animation-name: fadeInUp;"><i class="fa fa-angle-right"></i>Avail different vendor services from single point of contact</li><br/>
<li class="wow fadeInUp animated" data-wow-duration="800ms" data-wow-delay="200ms" style="visibility: visible; animation-duration: 800ms; animation-delay: 200ms; animation-name: fadeInUp;"><i class="fa fa-angle-right"></i>Store maintenance contracts insurance policies and set renewal reminders</li><br/>
<li class="wow fadeInUp animated" data-wow-duration="700ms" data-wow-delay="300ms" style="visibility: visible; animation-duration: 700ms; animation-delay: 300ms; animation-name: fadeInUp;"><i class="fa fa-angle-right"></i>Easy connectivity with management committee</li><br/>
<li class="wow fadeInUp animated" data-wow-duration="600ms" data-wow-delay="400ms" style="visibility: visible; animation-duration: 600ms; animation-delay: 400ms; animation-name: fadeInUp;"><i class="fa fa-angle-right"></i>Verify visitor with photo and details</li><br/>
<li class="wow fadeInUp animated" data-wow-duration="500ms" data-wow-delay="500ms" style="visibility: visible; animation-duration: 500ms; animation-delay: 500ms; animation-name: fadeInUp;"><i class="fa fa-angle-right"></i>Lookup for bill history & payment receipts</li><br/>
<li class="wow fadeInUp animated" data-wow-duration="500ms" data-wow-delay="600ms" style="visibility: visible; animation-duration: 500ms; animation-delay: 600ms; animation-name: fadeInUp;"><i class="fa fa-angle-right"></i>Online complaint booking</li><br/>
<li class="wow fadeInUp animated" data-wow-duration="500ms" data-wow-delay="700ms" style="visibility: visible; animation-duration: 500ms; animation-delay: 700ms; animation-name: fadeInUp;"><i class="fa fa-angle-right"></i>Free digital repository / document store facility</li><br/>
<li class="wow fadeInUp animated" data-wow-duration="500ms" data-wow-delay="800ms" style="visibility: visible; animation-duration: 500ms; animation-delay: 800ms; animation-name: fadeInUp;"><i class="fa fa-angle-right"></i>Receive notifications & reminders through mail/sms</li><br/>
</ul>
</div>
</div>
<div class="row">
<div class="col-sm-6 padding-top wow fadeInDown animated" data-wow-duration="1000ms" data-wow-delay="0ms" style="visibility: visible; animation-duration: 1000ms; animation-delay: 0ms; animation-name: fadeInDown;">
<h3 style="text-align: justify;">Are you the Resident of a Society or Apartment?</h3>
<p style="text-align: justify;"><I>Following are the feature can be available for you,<br> if you society or apartment is registered with SAS</I></p>
<ul class="elements">
<li class="wow fadeInUp animated" data-wow-duration="900ms" data-wow-delay="100ms" style="visibility: visible; animation-duration: 900ms; animation-delay: 100ms; animation-name: fadeInUp;"><i class="fa fa-angle-right"></i>Avail different vendor services from single point of contact</li><br/>
<li class="wow fadeInUp animated" data-wow-duration="800ms" data-wow-delay="200ms" style="visibility: visible; animation-duration: 800ms; animation-delay: 200ms; animation-name: fadeInUp;"><i class="fa fa-angle-right"></i>Store maintenance contracts insurance policies and set renewal reminders</li><br/>
<li class="wow fadeInUp animated" data-wow-duration="700ms" data-wow-delay="300ms" style="visibility: visible; animation-duration: 700ms; animation-delay: 300ms; animation-name: fadeInUp;"><i class="fa fa-angle-right"></i>Easy connectivity with management committee</li><br/>
<li class="wow fadeInUp animated" data-wow-duration="600ms" data-wow-delay="400ms" style="visibility: visible; animation-duration: 600ms; animation-delay: 400ms; animation-name: fadeInUp;"><i class="fa fa-angle-right"></i>Verify visitor with photo and details</li><br/>
<li class="wow fadeInUp animated" data-wow-duration="500ms" data-wow-delay="500ms" style="visibility: visible; animation-duration: 500ms; animation-delay: 500ms; animation-name: fadeInUp;"><i class="fa fa-angle-right"></i>Lookup for bill history & payment receipts</li><br/>
<li class="wow fadeInUp animated" data-wow-duration="500ms" data-wow-delay="600ms" style="visibility: visible; animation-duration: 500ms; animation-delay: 600ms; animation-name: fadeInUp;"><i class="fa fa-angle-right"></i>Online complaint booking</li><br/>
<li class="wow fadeInUp animated" data-wow-duration="500ms" data-wow-delay="700ms" style="visibility: visible; animation-duration: 500ms; animation-delay: 700ms; animation-name: fadeInUp;"><i class="fa fa-angle-right"></i>Free digital repository / document store facility</li><br/>
<li class="wow fadeInUp animated" data-wow-duration="500ms" data-wow-delay="800ms" style="visibility: visible; animation-duration: 500ms; animation-delay: 800ms; animation-name: fadeInUp;"><i class="fa fa-angle-right"></i>Receive notifications & reminders through mail/sms</li><br/>
</ul>
</div>
<div class="col-sm-6 wow fadeInDown animated" data-wow-duration="1000ms" data-wow-delay="0ms" style="visibility: visible; animation-duration: 1000ms; animation-delay: 0ms; animation-name: fadeInDown;">
<img src="img/conn.png" class="img-responsive" alt="">
</div>
</div>
</div>
<!-- End reviews Area -->
<!-- Start portfolio Area -->
<div id="portfolio" class="portfolio-area area-padding fix">
<div class="container">
<div class="row">
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12">
<div class="section-headline text-center">
<h2>Our Project</h2>
</div>
</div>
</div>
<div class="row">
<!-- Start Portfolio -page -->
<div class="awesome-project-1 fix">
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12">
<div class="awesome-menu ">
<ul class="project-menu">
<li>
<a href="#" class="active" data-filter="*">All</a>
</li>
<li>
<a href="#" data-filter=".development">Upcoming</a>
</li>
<li>
<a href="#" data-filter=".design">Current</a>
</li>
<li>
<a href="#" data-filter=".photo">Completed</a>
</li>
</ul>
</div>
</div>
</div>
<div class="awesome-project-content">
<!-- single-awesome-project start -->
<div class="col-md-4 col-sm-4 col-xs-12 design development">
<div class="single-awesome-project">
<div class="awesome-img">
<a href="#"><img src="img/portfolio/20140726_123213-396x296.jpg" alt="" /></a>
<div class="add-actions text-center">
<div class="project-dec">
<a class="venobox" data-gall="myGallery" href="img/portfolio/20140726_123213-396x296.jpg">
<h4>Good's life</h4>
<span>Dehgam</span>
</a>
</div>
</div>
</div>
</div>
</div>
<!-- single-awesome-project end -->
<!-- single-awesome-project start -->