-
Notifications
You must be signed in to change notification settings - Fork 33
/
tnc.html
1038 lines (953 loc) · 65 KB
/
tnc.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
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>IOSD | Terms and Conditions of use | International Organisation of Software Developers</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Revolutionary advancement in the field of technology is a dream come true. Passion breathes innovation and tech people band together pooling technical skills to form a community of professional coders who mix technology with creativity to make commercial and non-commercial projects for prestigious organisations.">
<meta name="keywords" content="iosd, software development, programming, technical skills, open source, innovation, entrepreneurship, open source development, oss, open source software, technology, professional coders, projects, commercial projects, non-commercial projects, skills, creativity, join iosd, expert training, mentorship">
<link rel="shortcut icon" type="image/x-icon" href="img/favicon.ico">
<link href="css/bootstrap.css" rel="stylesheet" type="text/css" media="all" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link href="css/stack-interface.css" rel="stylesheet" type="text/css" media="all" />
<link href="css/socicon.css" rel="stylesheet" type="text/css" media="all" />
<link href="css/lightbox.min.css" rel="stylesheet" type="text/css" media="all" />
<link href="css/flickity.css" rel="stylesheet" type="text/css" media="all" />
<link href="css/iconsmind.css" rel="stylesheet" type="text/css" media="all" />
<link href="css/jquery.steps.css" rel="stylesheet" type="text/css" media="all" />
<link href="css/theme.css" rel="stylesheet" type="text/css" media="all" />
<link href="css/custom.css" rel="stylesheet" type="text/css" media="all" />
<link href="css/style.css" rel="stylesheet" type="text/css" media="all" />
<link href="https://fonts.googleapis.com/css?family=Open+Sans:200,300,400,400i,500,600,700%7CMerriweather:300,300i"
rel="stylesheet">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Maven+Pro" rel="stylesheet">
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-103189427-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'UA-103189427-1');
</script>
<style>
ol {
list-style-type: none;
counter-reset: item;
margin: 0;
padding: 0;
}
ol > li {
display: table;
counter-increment: item;
margin-bottom: 0.6em;
}
ol > li:before {
content: counters(item, ".") ". ";
display: table-cell;
padding-right: 0.6em;
}
</style>
</head>
<body>
<div class="nav-container sticky-top">
<div class="bar bar--sm visible-xs bg--white bar--absolute collapse sticky-top">
<div class="container-fluid">
<div class="row">
<div class="col-3 col-md-2">
<a href="index.html">
<img class="logo logo-dark" alt="logo" src="img/iosd/IOSD-logo.png" />
<img class="logo logo-light" alt="logo" src="img/iosd/IOSD-logo.png" />
<!--<img class="logo logo-dark" alt="logo" src="img/logo-dark.png" />-->
<!--<img class="logo logo-light" alt="logo" src="img/logo-light.png" />-->
</a>
</div>
<div class="col-9 col-md-10 text-right">
<a href="#" class="hamburger-toggle" data-toggle-class="#menu1; hidden-xs">
<i class="icon stack-interface stack-menu"></i>
</a>
</div>
</div>
<!--end of row-->
</div>
<!--end of container-->
</div>
<div class="search header-nav-main header-nav-main-effect-1 header-nav-main-sub-effect-1">
<nav id="menu1" class="bar bar--sm bar-1 bg--white hidden-xs bar--absolute collapse sticky-top " data-scroll-class="100px:pos-fixed">
<div class="container-fluid px-3">
<div class="row" >
<div class="col-lg-1 col-md-1 text-center hidden-xs px-0 mx-0" >
<div class="bar__module px-0 mx-0" >
<a href="index.html" id="logoCenter" >
<img class="logo logo-dark px-0 mx-0" alt="logo" src="img/iosd/IOSD-logo.png" />
</a>
</div>
<!--end module-->
</div>
<div class="col-lg-9 col-md-8 text-center text-center-xs text-center-sm text-center-md text-center-lg text-center-xl mx-0 px-4">
<div class="bar__module collapse">
<ul class="menu-horizontal text-center px-4 mx-0">
<li class="dropdown text-center">
<span class="dropdown__trigger">About</span>
<div class="dropdown__container text-left">
<div class="container">
<div class="row">
<div class="dropdown__content col-lg-2 col-md-4">
<ul class="menu-vertical">
<li>
<i class="fa fa-angle-right"></i>
<a href="mission.html">Mission & Vision</a>
</li>
<li>
<i class="fa fa-angle-right"></i>
<a href="core-values.html">Core Values</a>
</li>
<li><i class="fa fa-angle-right"></i>
<a href="timeline.html">Timeline</a>
</li>
<li><i class="fa fa-angle-right"></i>
<a href="leadership.html">IOSD Leadership</a>
</li>
<li><i class="fa fa-angle-right"></i>
<a href="goals.html">Student Chapter Goals </a>
</li>
<li><i class="fa fa-angle-right"></i>
<a href="ourPartners.html">Our Partners</a>
</li>
</ul>
</div>
<!--end dropdown content-->
</div>
<!--end row-->
</div>
</div>
<!--end dropdown container-->
</li>
<li class="dropdown text-center">
<span class="dropdown__trigger">Student Life</span>
<div class="dropdown__container text-left">
<div class="container">
<div class="row">
<div class="dropdown__content col-lg-3 col-md-5">
<ul class="menu-vertical">
<li><i class="fa fa-angle-right"></i>
<a href="benefits-overview.html">Overview</a>
</li>
<li class="dropdown">
<span class="dropdown__trigger">
<i class="fa fa-angle-right"></i>
Member Portal</span>
<div class="dropdown__container">
<div class="container">
<div class="row">
<div class="dropdown__content col-lg-3 col-sm-3">
<ul class="menu-vertical">
<li class="dropdown">
<span class="dropdown__trigger">
<i class="fa fa-angle-right"></i>
E-Resource</span>
<div class="dropdown__container">
<div class="container">
<div class="row">
<div class="dropdown__content col-lg-3 col-sm-3">
<ul class="menu-vertical">
<li><i class="fa fa-angle-right"></i>
<a href="assignments.html">
Assignments
</a>
</li>
<li><i class="fa fa-angle-right"></i>
<a href="modules.html">
Modules
</a>
</li>
<li><i class="fa fa-angle-right"></i>
<a href="lectures.html">
Lectures
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</li>
<li><i class="fa fa-angle-right"></i>
<a href="find_my_project.html">
Find My Project
</a>
</li>
<li><i class="fa fa-angle-right"></i>
<a href="make_my_cv.html">
Make My CV
</a>
</li>
<li><i class="fa fa-angle-right"></i>
<a href="placement_cell.html">
Placement Cell
</a>
</li>
<li><i class="fa fa-angle-right"></i>
<a href="kut_my_link.html">
Kut My Link
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</li>
<li><i class="fa fa-angle-right"></i>
<a href="activites.html">Activities</a>
</li>
<li><i class="fa fa-angle-right"></i>
<a href="discounts.html">Exclusive discount and Freebies</a>
</li><li><i class="fa fa-angle-right"></i>
<a href="exclusive-initiatives.html">Exclusive Initiative</a>
</li>
<li><i class="fa fa-angle-right"></i>
<a href="studentChapter.html">Create IOSD Student
Chapter</a>
</li>
<li><i class="fa fa-angle-right"></i>
<a href="list-student-chapter.html">List of Student
Chapters</a>
</li>
<!-- <li><i class="fa fa-angle-right"></i>
<a href="/">WALL OF FAME</a>
</li> -->
</ul>
</div>
<!--end dropdown content-->
</div>
<!--end row-->
</div>
</div>
<!--end dropdown container-->
</li>
<li>
<a href="projects.html">Projects</a>
</li>
<li>
<a href="events.html">Events</a>
</li>
<!-- <li>
<a href="/">Member Portal</a>
</li> -->
<li class="dropdown text-center">
<span class="dropdown__trigger">Member Portal
</span>
<div class="dropdown__container text-left">
<div class="container">
<div class="row">
<div class="dropdown__content col-lg-3 col-md-5">
<ul class="menu-vertical">
<li class="dropdown">
<span class="dropdown__trigger">
<i class="fa fa-angle-right"></i>
E-Resources</span>
<div class="dropdown__container">
<div class="container">
<div class="row">
<div class="dropdown__content col-lg-3 col-sm-3">
<ul class="menu-vertical">
<li><i class="fa fa-angle-right"></i>
<a href="assignments.html">
Assignments
</a>
</li>
<li><i class="fa fa-angle-right"></i>
<a href="modules.html">
Modules
</a>
</li>
<li><i class="fa fa-angle-right"></i>
<a href="lectures.html">
Lectures
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</li>
<li><i class="fa fa-angle-right"></i>
<a href="find_my_project.html">Find My Project</a>
</li>
<li><i class="fa fa-angle-right"></i>
<a href="make_my_cv.html">Make My CV</a>
</li>
<li><i class="fa fa-angle-right"></i>
<a href="placement_cell.html">Placement Cell</a>
</li>
<li><i class="fa fa-angle-right"></i>
<a href="kut_my_link.html">Kut My Link</a>
</li>
<!-- <li><i class="fa fa-angle-right"></i>
<a href="/">WALL OF FAME</a>
</li> -->
</ul>
</div>
<!--end dropdown content-->
</div>
<!--end row-->
</div>
</div>
<!--end dropdown container-->
</li>
<li>
<a href="wall_of_fame.html">Wall of Fame
</a>
</li>
<li>
<a href="https://placementsaga.com">PlacementSaga
<sup class="menu-sup">New</sup>
</a>
</li>
<li>
<a href="placement_cell.html">Placement Cell
</a>
</li>
</ul>
</div>
<!--end module-->
</div>
<div class="col-lg-2 col-md-3 pr-1 pl-0 mx-0 no-wrap">
<div class="bar__module">
<a class="btn btn--sm ml-1 type--uppercase mr-1 " href="http://member.iosd.tech">
<span class="btn__text">
Login
</span>
</a>
<a class="btn btn--sm ml-1 mr-1 btn--primary type--uppercase my-1" target="_blank" href="https://registrations.iosd.tech/">
<span class="btn__text">
JOIN IOSD
</span>
</a>
</div>
</div>
</div>
<!--end of row-->
</div>
<!--end of container-->
</nav>
</div>
</div>
<div class="main-container">
<section class="text-center p-13 bt-mar">
<div class="container">
<div class="row">
<div class="col-md-10 col-lg-8">
<h1 class="ac-mar">
Terms and Conditions of Use
</h1>
<!--<p class="lead mar-sz">
Listen.Learn.Lead.-->
<!-- <p class="lead mar-sz">Listen to technology professionals, learn to use the technical tools
at
your disposal and lead the way for fellow tech-enthusiasts to make revolutionary
advancements in technology . </p> -->
</p>
</div>
</div>
<!--end of row-->
</div>
<!--end of container-->
</section>
<section class="switchable feature-large">
<div class="container">
<div class="row justify-content-around">
<!--<div class="col-md-6">
<img alt="Image" class="border--round box-shadow-wide" src="img/mission1.jpg" />
</div>-->
<div class="col-md-12 col-lg-12">
<div class="text-block">
<h2>Introduction</h2>
</div>
<ol class="lead">
<li>
These terms and conditions shall govern your use of our website.
<ol>
<li>
By using our website, you accept these terms and conditions in full;
accordingly, if you disagree with these terms and conditions or any part
of these terms and conditions, you must not use our website.
</li>
<li>
If you register with our website, submit any material to our website or
use any of our website services, we will ask you to expressly agree to
these terms and conditions.
</li>
<li>
You must be at least 10 years of age to use our website; by using our
website or agreeing to these terms and conditions, you warrant and
represent to us that you are at least 10 years of age.
</li>
<li>
Our website uses cookies; by using our website or agreeing to these
terms and conditions, you consent to our use of cookies in accordance
with the terms of our privacy and cookies policy.
</li>
</ol>
</li>
<li>
<b>Introduction</b>
<ol>
<li>
You may:
<ol>
<li>
view pages from our website in a web browser;
</li>
<li>
download pages from our website for caching in a web browser;
</li>
<li>
print pages from our website;
</li>
<li>
stream audio and video files from our website; and
</li>
<li>
use our website services by means of a web browser
</li>
</ol>
subject to the other provisions of these terms and conditions.
</li>
<li>
Except as expressly permitted BY THE provisions of these terms and
conditions, you must not download any material from our website or save
any such material to your computer.
</li>
<li>
You may only use our website for your own personal and business
purposes, and you must not use our website for any other purposes.
</li>
<li>
Except as expressly permitted by these terms and conditions, you must
not edit or otherwise modify any material on our website.
</li>
<li>
Unless you own or control the relevant rights in the material, you must
not:
<ol>
<li>
republish material from our website (including republication on another
website);
</li>
<li>
sell, rent or sub-license material from our website;
</li>
<li>
show any material from our website in public;
</li>
<li>
exploit material from our website for a commercial purpose; or
</li>
<li>
redistribute material from our website.
</li>
</ol>
</li>
<li>
We reserve the right to restrict access to areas of our website, or indeed
our whole website, at our discretion; you must not circumvent or bypass,
or attempt to circumvent or bypass, any access restriction measures on
our website.
</li>
</ol>
</li>
<li>
<b>Acceptable use</b>
<ol>
<li>
You must not:
<ol>
<li>
use our website in any way or take any action that causes, or may cause,
damage to the website or impairment of the performance, availability or
accessibility of the website;
</li>
<li>
use our website in any way that is unlawful, illegal, fraudulent or harmful, or
in connection with any unlawful, illegal, fraudulent or harmful purpose or
activity;
</li>
<li>
use our website to copy, store, host, transmit, send, use, publish or
distribute any material which consists of (or is linked to) any spyware,
computer virus, Trojan horse, worm, keystroke logger, rootkit or other
malicious computer software;
</li>
<li>
conduct any systematic or automated data collection activities (including
without limitation scraping, data mining, data extraction and data
harvesting) on or in relation to our website without our express written
consent;
</li>
<li>
access or otherwise interact with our website using any robot, spider or
other automated means, except for the purpose of search engine indexing;
</li>
<li>
use data collected from our website for any direct marketing activity
(including without limitation email marketing, SMS marketing, telemarketing
and direct mailing).
</li>
</ol>
</li>
<li>
You must not use data collected from our website to contact individuals,
companies or other persons or entities.
</li>
<li>
You must ensure that all the information you supply to us through our
website, or in relation to our website, is [true, accurate, current,
complete and non-misleading].
</li>
</ol>
</li>
<li>
<b>Registration and accounts</b>
<ol>
<li>
You may register for an account with our website by completing and
submitting the account registration form on our website, and clicking on
the verification link in the email that the website will send to you.
</li>
<li>
You must not allow any other person to use your account to access the
website.
</li>
<li>
You must notify us in writing immediately if you become aware of any
unauthorised use of your account.
</li>
<li>
You must not use any other person's account to access the website,
unless you have that person's express permission to do so.
</li>
</ol>
</li>
<li>
<b>User login details</b>
<ol>
<li>
If you register for an account with our website, we will provide you with a
user ID and password.
</li>
<li>
Your user ID must not be liable to mislead; you must not use your
account or user ID for or in connection with the impersonation of any
person.
</li>
<li>
You must keep your password confidential.
</li>
<li>
You must notify us in writing immediately if you become aware of any
disclosure of your password.
</li>
<li>
You are responsible for any activity on our website arising out of any
failure to keep your password confidential, and may be held liable for any
losses arising out of such a failure.
</li>
</ol>
</li>
<li>
<b>Cancellation and suspension of account</b>
<ol>
<li>
You may:
<ol>
<li>
suspend your account;
</li>
<li>
cancel your account; and/or
</li>
<li>
edit your account details
</li>
</ol>
at any time in our sole discretion without notice or explanation.
</li>
<li>
You may cancel your account on our website using your account control
panel on the website.
</li>
</ol>
</li>
<li>
<b>Your content: licence</b>
<ol>
<li>
In these terms and conditions, "your content" means all works and
materials (including without limitation text, graphics, images, audio
material, video material, audio-visual material, scripts, software and files)
that you submit to us or our website for storage or publication on,
processing by, or transmission via, our website.
</li>
<li>
You grant to us a worldwide, irrevocable, non-exclusive, royalty-free
licence to use, reproduce, store, adapt, publish, translate and distribute
your content in any existing or future media. You hereby waive all your
moral rights in your content to the maximum extent permitted by
applicable law; and you warrant and represent that all other moral rights
in your content have been waived to the maximum extent permitted by
applicable law.
</li>
<li>
You may edit your content to the extent permitted using the editing functionality made available on our website.
</li>
<li>
Without prejudice to our other rights under these terms and conditions, if
you breach any provision of these terms and conditions in any way, or if
we reasonably suspect that you have breached these terms and
conditions in any way, we may delete, unpublish or edit any or all of your
content.
</li>
</ol>
</li>
<li>
<b>Your content: rules</b>
<ol>
<li>
You warrant and represent that your content will comply with these terms and conditions.
</li>
<li>
Your content must not be illegal or unlawful, must not infringe any
person's legal rights, and must not be capable of giving rise to legal
action against any person (in each case in any jurisdiction and under any
applicable law).
</li>
<li>
Your content, and the use of your content by us in accordance with these terms and conditions, must not:
<ol>
<li>be libellous or maliciously false;</li>
<li>be obscene or indecent;</li>
<li>infringe any copyright, moral right, database right, trade mark right, design
right, right in passing off, or other intellectual property right;</li>
<li>infringe any right of confidence, right of privacy or right under data
protection legislation;</li>
<li>constitute negligent advice or contain any negligent statement;</li>
<li>constitute an incitement to commit a crime, instructions for the commission
of a crime or the promotion of criminal activity;</li>
<li>be in contempt of any court, or in breach of any court order;</li>
<li>be in breach of racial or religious hatred or discrimination legislation;</li>
<li>be blasphemous;</li>
<li>be in breach of official secrets legislation;</li>
<li>be in breach of any contractual obligation owed to any person;</li>
<li>depict violence in an explicit, graphic or gratuitous manner;</li>
<li>be pornographic, lewd, suggestive or sexually explicit;</li>
<li>be untrue, false, inaccurate or misleading;</li>
<li>consist of or contain any instructions, advice or other information which may
be acted upon and could, if acted upon, cause illness, injury or death, or any
other loss or damage;</li>
<li>constitute spam;</li>
<li>be offensive, deceptive, fraudulent, threatening, abusive, harassing, antisocial, menacing, hateful, discriminatory or inflammatory; or</li>
<li>cause annoyance, inconvenience or needless anxiety to any person.</li>
</ol>
</li>
</ol>
</li>
<li>
<b>Limited warranties</b>
<ol>
<li>
We do not warrant or represent:
<ol>
<li>the completeness or accuracy of the information published on our website;</li>
<li>that the material on the website is up to date; or</li>
<li>that the website or any service on the website will remain available.</li>
</ol>
</li>
<li>
We reserve the right to discontinue or alter any or all of our website
services, and to stop publishing our website, at any time in our sole
discretion without notice or explanation; and save to the extent expressly
provided otherwise in these terms and conditions, you will not be entitled
to any compensation or other payment upon the discontinuance or
alteration of any website services, or if we stop publishing the website.
</li>
<li>
To the maximum extent permitted by applicable law, we exclude all
representations and warranties relating to the subject matter of these
terms and conditions, our website and the use of our website.
</li>
</ol>
</li>
<li>
<b>Breaches of these terms and conditions</b>
<ol>
<li>
Without prejudice to our other rights under these terms and conditions,
if you breach these terms and conditions in any way, or if we reasonably
suspect that you have breached these terms and conditions in any way,
we may:
<ol>
<li>send you one or more formal warnings;</li>
<li>temporarily suspend your access to our website;</li>
<li>permanently prohibit you from accessing our website;</li>
<li>block computers using your IP address from accessing our website;</li>
<li>contact any or all of your internet service providers and request that they
block your access to our website; </li>
<li>commence legal action against you, whether for breach of contract or
otherwise; and/or</li>
<li>suspend or delete your account on our website.</li>
</ol>
</li>
<li>
Where we suspend or prohibit or block your access to our website or a
part of our website, you must not take any action to circumvent such
suspension or prohibition or blocking (including without limitation
creating and/or using a different account).
</li>
</ol>
</li>
<li>
<b>Variation</b>
<ol>
<li>
We may revise these terms and conditions from time to time.
</li>
<li>
The revised terms and conditions shall apply to the use of our website
from the date of publication of the revised terms and conditions on the
website, and you hereby waive any right you may otherwise have to be
notified of, or to consent to, revisions of these terms and conditions.] OR
[We will give you written notice of any revision of these terms and
conditions, and the revised terms and conditions will apply to the use of
our website from the date that we give you such notice; if you do not
agree to the revised terms and conditions, you must stop using our
website.
</li>
<li>
If you have given your express agreement to these terms and
conditions, we will ask for your express agreement to any revision of
these terms and conditions; and if you do not give your express
agreement to the revised terms and conditions within such period as we
may specify, we will disable or delete your account on the website, and
you must stop using the website.
</li>
</ol>
</li>
<li>
<b>Assignment</b>
<ol>
<li>
You hereby agree that we may assign, transfer, sub-contract or
otherwise deal with our rights and/or obligations under these terms and
conditions.
</li>
<li>
You may not without our prior written consent assign, transfer, subcontract or otherwise deal with any of your rights and/or obligations under these terms and conditions.
</li>
</ol>
</li>
<li>
<b>Severability</b>
<ol>
<li>
If a provision of these terms and conditions is determined by any court
or other competent authority to be unlawful and/or unenforceable, the
other provisions will continue in effect.
</li>
<li>
If any unlawful and/or unenforceable provision of these terms and
conditions would be lawful or enforceable if part of it were deleted, that
part will be deemed to be deleted, and the rest of the provision will
continue in effect.
</li>
</ol>
</li>
<li>
<b>Third party rights</b>
<ol>
<li>
A contract under these terms and conditions is for our benefit and your
benefit, and is not intended to benefit or be enforceable by any third
party.
</li>
<li>
The exercise of the parties' rights under a contract under these terms and conditions is not subject to the consent of any third party.
</li>
</ol>
</li>
<li>
<b>Entire agreement</b>
<ol>
<li>
The terms and conditions, together with our privacy and cookies policy,
shall constitute the entire agreement between you and us in relation to
your use of our website and shall supersede all previous agreements
between you and us in relation to your use of our website.
</li>
</ol>
</li>
<li>
<b>Law and jurisdiction</b>
<ol>
<li>
These terms and conditions shall be governed by and construed in accordance with Indian Law.
</li>
<li>
Any disputes relating to these terms and conditions shall be subject to the exclusive jurisdiction of the courts of India.
</li>
</ol>
</li>
<li>
<b>Statutory and regulatory disclosures</b>
<ol>
<li>
We are registered as International Organisation of Software Developers
with Government of National Capital Territory in India and are subject to
Article 64 Trust.
</li>
<li>
Our GST number is 07AABTI4771P1Z3.
</li>
</ol>
</li>
<li>
<b>.Our details.</b>
<ol>
<li>
This website is owned and operated by International Organisation of Software Developers.
</li>
<li>
We are registered in India under registration number 1026, in book No. 4 Vol No. 275, and our registered office is at Govindpuri.
</li>
<li>
Our principal place of business is at [address]
</li>
<li>
You can contact us:
<ol>
<li>using our website contact form;</li>
<li>by telephone, on the contact number published on our website from time to
time; or</li>
<li>by email, using the email address published on our website from time to
time.</li>
</ol>
</li>
</ol>
</li>
</ol>
</div>
</div>
</div>
<!--end of row-->
</div>
<!--end of container-->
</section>
<footer class="footer-3 text-center-xs space--xs ">
<div class="container">
<div class="row">
<div class="col-md-6">
<img alt="Image" class="logo" src="img/iosd/IOSD-logo.png" />
<ul class="list-inline list--hover">
<li class="list-inline-item">
<a href="tel:9013803905">
<span class="type--fine-print">
+91 9625652844
</span>
</a>
</li>
<li class="list-inline-item">
<a href="mailto:[email protected]">
<span class="type--fine-print">[email protected]</span>
</a>
</li>
</ul>
</div>
<div class="col-md-6 text-right text-center-xs ">
<ul class="social-list list-inline list--hover">
<li class="list-inline-item">
<a href="https://github.com/IOSD">
<i class="socicon socicon-github icon icon--xs "></i>
</a>
</li>
<li class="list-inline-item">
<a href="https://m.twitch.tv/iosdofficial/profile">
<i class="socicon socicon-twitch icon icon--xs "></i>
</a>
</li>
<li class="list-inline-item">
<a href="https://twitter.com/iosdofficial?lang=en">
<i class="socicon socicon-twitter icon icon--xs "></i>
</a>
</li>
<li class="list-inline-item">
<a href="https://www.facebook.com/iosddtu/">
<i class="socicon socicon-facebook icon icon--xs "></i>
</a>
</li>
<li class="list-inline-item">
<a href="https://in.linkedin.com/company/iosdofficial">
<i class="socicon socicon-linkedin icon icon--xs "></i>
</a>
</li>
<li class="list-inline-item">
<a href="https://www.instagram.com/iosdofficial/?hl=en">
<i class="socicon socicon-instagram icon icon--xs "></i>
</a>
</li>
<li class="list-inline-item">
<a href="http://bit.ly/IOSDYT">
<i class="socicon socicon-youtube icon icon--xs "></i>
</a>
</li>
<li class="list-inline-item">
<a href="https://angel.co/international-organisation-of-software-developers/">
<i class="socicon socicon-angellist icon icon--xs "></i>
</a>
</li>
</ul>
</div>
</div>
<!--end of row-->
<div class="row">
<div class="col-md-4">
<p class="type--fine-print">
F/F, Plot 4, Amar Park, Inderlok, Delhi-110035
</p>
</div>