-
Notifications
You must be signed in to change notification settings - Fork 49
/
index.htmlold
1833 lines (1623 loc) · 103 KB
/
index.htmlold
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" class="no-js">
<head>
<meta charset="utf-8">
<title>iOS 7.1 UDiD Registration & Activation Instant - Certificates | iSignCloud AppAddict NON JailBreak | RegMyUDiD</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="iOS 7.1 UDiD registration and activation. Certificates and provisioning profiles. Fastest service on the web! Trusted for more than 4 years">
<meta name="keywords" content="udid registration, udid, registration, activation, certificates, provisioning, profiles, registering udid, instasign, ios 7.1, ios7, ios 7, ios 7 beta, ios7 beta 1, ios 7 beta 1, ios6.1, ios 7, ios 7 links, ios7 udid, ios 7 udid, ios6, ios 6, apple, ios, ios 5, iphone, ipad, reg, developer, account, ios 6 udid registartion, ios 6 udid activation, ios6 udid registartion, ios7 udid activation, ios 7 download links, ios 7 udid, ios7 udid, ios 6 activate, ios6 beta1, ios 6 ispw, beta ispw, udid activation, iosregister, ios7 register, thenewipad, the new ipad, ipad ios6, iphone ios6, ipad udid, where is my udid, locate my udid, ios beta, beta, ios 7, crappstore, iresign, imzdl, imodzone, thenewipad, ipad 3, the new ipad, cracked apps, free apps, cracked apps no jailbreak">
<link href='https://fonts.googleapis.com/css?family=Open+Sans:300,400,700,800' rel='stylesheet' type='text/css'>
<!--[if IE]>
<link href="https://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Open+Sans:400" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Open+Sans:700" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Open+Sans:800" rel="stylesheet" type="text/css">
<![endif]-->
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">
<link href="css/icon-effect.css" rel="stylesheet" type="text/css">
<link href="css/settings.css" rel="stylesheet" type="text/css">
<link href="css/font-awesome.min.css" rel="stylesheet">
<link href="css/preloader.css" rel="stylesheet" type="text/css">
<!--[if lt IE 9]>
<script src="https://html5shim.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script>
<![endif]-->
<script src="js/modernizr.custom.js"></script>
</head>
<body data-spy="scroll" data-target=".navbar" class="royal_loader">
<header id="top">
<div class="navbar">
<div class="container">
<a class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse" href="#">
<div class="pad2"></div>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span></a>
<!-- Logo -->
<a href="#top"><img src="img/logo.png" alt="" class="navbar-brand" /></a>
<!-- Collapse -->
<div class="nav-collapse collapse navbar-collapse">
<!-- MENU -->
<ul class="nav navbar-nav pull-right">
<li class="active"><a href="#top">Home</a></li>
<li><a href="#Section-2">Buy Now</a></li>
<li><a href="#Section-3">Products</a></li>
<li><a href="#checker">Check Order</a></li>
<li><a href="#Section-4">iOS 7 Beta</a></li>
<li><a href="#Section-5">My UDiD?</a></li>
<li><a href="https://regmyudid.freshdesk.com" target="_blank">Contact</a></li>
<!--//<li><a href="blog.html">Blog</a></li>-->
</ul><!-- //MENU -->
</div>
</div>
</div>
</header>
<!-- //HEADER ENDS-->
<!-- REVOLUTION SLIDER -->
<section id="revolution_slider">
<div class="fullwidthbanner-container">
<div class="fullwidthbanner">
<ul>
<!-- Slide 1 -->
<li data-transition="slideright">
<img src="img/slider/slider1.jpg" alt="" />
<!-- Caption -->
<div class="caption sft stl" data-x="center" data-y="110" data-speed="800" data-start="1200" data-easing="easeOutExpo">
<h3 class="rev-title bold ">RegMyUDiD</h3>
</div>
<!-- Caption -->
<div class="caption lfl stl rev-title-sub" data-x="center" data-y="220" data-speed="1300" data-start="1400" data-easing="easeOutExpo">
Instant UDiD Registration Services
</div>
<!-- Caption -->
<div class="caption sfb" data-x="center" data-y="310" data-speed="1100" data-start="1100" data-easing="easeOutExpo">
<div class="scroll"><a href="#Section-2" class="btn btn-lg btn-info btn-mobile">Buy Now!</a></div>
</div>
<!-- Caption -->
<div class="tp-caption sfb social-mobile" data-x="450" data-y="430" data-speed="500" data-start="2000" data-easing="easeOutExpo">
<a href="https://twitter.com/RegMyUDiD" target="_blank"><img src="img/slider/twitter.png" alt="" /></a>
</div>
<!-- Caption -->
<div class="tp-caption sfb social-mobile" data-x="550" data-y="430" data-speed="500" data-start="2200" data-easing="easeOutExpo">
<a href="https://www.facebook.com/pages/RegMyUDiDcom/219727621400722" target="_blank"><img src="img/slider/facebook.png" alt="" /></a>
</div>
<!-- Caption -->
<div class="tp-caption sfb social-mobile" data-x="650" data-y="430" data-speed="500" data-start="2400" data-easing="easeOutExpo">
<a href="#"><img src="img/slider/instagram.png" alt="" /></a>
</div>
</li>
<!-- Slide 2 -->
<li data-transition="slideright">
<img src="img/slider/slider2.jpg" alt="" />
<!-- Caption -->
<div class="tp-caption lfr" data-x="20" data-y="305" data-speed="2400" data-start="800" data-easing="easeOutExpo">
<img src="img/slider/note.png" alt="" />
</div>
<!-- Caption -->
<div class="tp-caption lfr" data-x="110" data-y="380" data-speed="2000" data-start="1000" data-easing="easeOutExpo">
<img src="img/slider/phone.png" alt="" />
</div>
<!-- Caption -->
<div class="tp-caption lfb" data-x="200" data-y="450" data-speed="1800" data-start="1500" data-easing="easeOutExpo">
<img src="img/slider/camera.png" alt="" />
</div>
<!-- Caption -->
<div class="tp-caption lfb" data-x="920" data-y="100" data-speed="1500" data-start="1800" data-easing="easeOutExpo">
<img src="img/slider/rocket.png" alt="" />
</div>
<!-- Caption -->
<div class="tp-caption lfb" data-x="880" data-y="360" data-speed="1800" data-start="1500" data-easing="easeOutExpo">
<img src="img/slider/cloud.gif" alt="" />
</div>
<!-- Caption -->
<div class="caption randomrotate" data-x="center" data-y="110" data-speed="800" data-start="1100" data-easing="easeOutExpo">
<h3 class="rev-title bold">iSignCloud</h3>
</div>
<!-- Caption -->
<div class="caption rev-title-sub sft" data-x="center" data-y="220" data-speed="1300" data-start="1400" data-easing="easeOutExpo">
Fast • Professional • Inovative
</div>
<!-- Caption -->
<div class="caption sfb" data-x="center" data-y="320" data-speed="1100" data-start="1500" data-easing="easeOutBack">
<div class="scroll"><a data-toggle="modal" href="#project_1" class="btn btn-lg btn-warning btn-mobile">Get Now</a></div>
</div>
</li>
<!-- Slide 3 -->
<li data-transition="slideleft">
<img src="img/slider/slider3.jpg" alt="" />
<!-- Caption -->
<div class="tp-caption lfb" data-x="right" data-y="70" data-speed="1500" data-start="800" data-easing="easeOutExpo">
<img src="img/slider/iMac.png" alt="" />
</div>
<!-- Caption -->
<div class="caption lfl stl bg" data-x="20" data-y="70" data-speed="800" data-start="700" data-easing="easeOutExpo">
<h2 class="rev-title big">AppAddict<br>NO JailBreak!!</h2>
</div>
<!-- Caption -->
<div class="caption sfb rev-left rev-title-sub2" data-x="left" data-y="240" data-speed="800" data-start="700" data-easing="easeOutExpo">
We Have Teamed Up
</div>
<!-- Caption -->
<div class="caption lfb rev-left rev-title-sub2" data-x="left" data-y="300" data-speed="900" data-start="900" data-easing="easeOutExpo">
With The Best!
</div>
<!-- Caption -->
<div class="caption lfb rev-left rev-title-sub2" data-x="left" data-y="360" data-speed="1000" data-start="1100" data-easing="easeOutExpo">
<a href="https://AppAddict.org" target="_blank">AppAddict.org</a>
</div>
</li>
<!-- Slide 4 -->
<li data-transition="slidedown">
<img src="img/slider/slider4.jpg" alt="" />
<!-- Caption -->
<div class="caption fade fullscreenvideo" data-autoplay="false" data-speed="500" data-start="500" data-easing="easeOutBack">
<iframe src="https://www.youtube.com/embed/lugIDBxfiJ0" frameborder="0" allowfullscreen></iframe>
</div>
<!-- Caption -->
<div class="caption bg rev-title sft stt" data-x="center" data-y="25" data-speed="300" data-start="500" data-easing="easeOutExpo" data-end="4000"
data-endspeed="300" data-endeasing="easeInSine">
iSignCloud - See it in Action!
</div>
</li>
</ul>
<div class="tp-bannertimer tp-bottom"></div>
</div>
</div>
<!-- // END REVOLUTION SLIDER -->
</section>
<!-- SECTION-1 - (ABOUT, SERVICES, CHECKER) -->
<section id="Section-1">
<div class="container pad25">
<div class="jumbotron">
<div class="container">
<div class="col-sm-12 col-lg-6 text-center">
<div class="jumbotron_title text-center">Welcome</div>
<p>Here at <strong>RegMyUDiD</strong> we are the number one place on the internet for UDiD Activations & Registrations. We have been the <strong>fastest, most professional</strong> service for 5 years and have registered a staggering <strong>600,000+</strong> UDiD's since iOS 3!</p>
<p>We offer a range of services from simple UDiD registration to a cloud based resign service <a href="#project_1" data-toggle="modal"><strong>iSignCloud</strong></a> for installing cracked apps on a NON JailBroken device using the AppAddict iOS app!</p>
<p class="pad15 scroll"><a class="btn btn-md btn-info" href="#Section-2">Buy Now!</a></p>
<div class="pad15"></div>
</div>
<div class="col-sm-12 col-lg-6">
<img src="img/portfolio/browser.png" alt="" />
</div>
</div>
</div>
<!-- //JUMBOTRON -->
</div>
<div class="container">
<!-- 1 -->
<a name="about"></a>
<div class="text-center col-sm-6 col-lg-3">
<div class="hi-icon-wrap hi-icon-effect-7 hi-icon-effect-7a">
<a href="javascript:{}" class="hi-icon hi-icon-mobile"></a>
<h4>UDiD Registration</h4>
<p>RegMyUDiD is the original, longest running UDiD registration provider. Providing the fastest most reliable registrations since iOS 3!
<br>Instant registrations!</p>
<div class="scroll"><a class="btn btn-info" href="#Section-2">Buy Now</a></div>
</div>
</div>
<!-- 2 -->
<div class="text-center col-sm-6 col-lg-3" >
<div class="hi-icon-wrap hi-icon-effect-7 hi-icon-effect-7a">
<a href="javascript:{}" class="hi-icon hi-icon-cog"></a>
<h4>Powerfull Products</h4>
<p>We have developed a range of services and tools to menhance your iOS eperience. Everything we do is aimed super simple operation with powerfull results </p>
<div class="scroll"><a class="btn btn-info" href="#Section-3">Products</a></div>
</div>
</div>
<!-- 3 -->
<div class="text-center col-sm-6 col-lg-3" >
<div class="hi-icon-wrap hi-icon-effect-7 hi-icon-effect-7a">
<a href="javascript:{}" class="hi-icon hi-icon-refresh"></a>
<h4>Cloud Based Resign</h4>
<p>iSignCloud our newest and most popular service. This is app resigning done in the cloud, install cracked apps NO jailbreak required direct on device. Uses AppAddict iOS app!</p>
<div class="scroll"><a class="btn btn-info" data-toggle="modal" href="#project_1">iSignCloud</a></div>
</div>
</div>
<!-- 4 -->
<div class="text-center col-sm-6 col-lg-3" >
<div class="hi-icon-wrap hi-icon-effect-7 hi-icon-effect-7a">
<a href="javascript:{}" class="hi-icon hi-icon-support"></a>
<h4>Excellent Support</h4>
<p>From day one we have been renowned for our dedicated and thorough support. We recently implemented an online helpdesk to further improve the level of support</p>
<div class="scroll"><a class="btn btn-info" target="_blank" href="http://regmyudid.freshdesk.com">Support</a></div>
</div>
</div>
<!-- SERVICES -->
<div class="text-center col-sm-12 col-lg-12">
<div class="pad30"> </div>
<h1>Services We Offer</h1>
<p class="lead">We are what we repeatedly do.<br/>Excellence, therefore, is not an act, but a habit.</p>
<div class="row">
<div class="col-sm-8 col-lg-8 text-left">
<div class="row">
<div class="col-sm-2 col-lg-1 pad10">
<i class="icon-laptop icon-3x darkgrey"></i>
</div>
<div class="col-sm-9 col-lg-11">
<h6>UDiD Registration</h6>
<p>First and foremost RegMyUDiD is a UDiD registration provider. We have been offering UDiD registrations for the past 5 years now since iOS 3 beta. Over the years we have streamlined our registration process and for the past few years have offered automated registration. In doing so we are now able to offer instant registrations for all the packages that we offer. </p>
</div>
<div class="col-sm-2 col-lg-1 pad15">
<i class="icon-refresh icon-3x darkgrey"></i>
</div>
<div class="col-sm-9 col-lg-11">
<h6>Resigning of Apps</h6>
<p>RegMyUDiD provide you with all the neccesary files and tools to resign and install cracked apps on your NON jailbroken devices. We have a couple of tools, iSignCloud is an all in one cloud based resign service that is operated on your device. We also have a program called AppAddict Tools that will allow you to resign apps using your computer.</p>
</div>
<div class="col-sm-2 col-lg-1 pad15">
<i class="icon-building icon-3x darkgrey"></i>
</div>
<div class="col-sm-9 col-lg-11">
<h6>Reseller Programs</h6>
<p>We are about to launch a brand new reseller program, this will give you the oportunity to run your own UDiD registration website. We have designed a range of ready to go websites with some excellent domains to choose from. Resellers will have access to sell all RegMyUDiD services and tools, we have fantastic reseller rates we think you will be very happy with!</p>
</div>
</div>
</div>
<!--COL 2-->
<div class="col-sm-4 col-lg-4 text-left">
<h6>Our Promise</h6>
<p>To constantly provide you with the fastest most reliable UDiD registration service. We strive to inovate within all areas we work!</p>
<ul class="icons">
<li><i class="icon-heart-empty darkgrey"></i> Developing Exciting Tools</li>
<li><i class="icon-file darkgrey"></i> Attention to Detail</li>
<li><i class="icon-html5 darkgrey"></i> 100% Dedication</li>
</ul>
<div class="pad25"></div>
<!--SKILL BARS-->
<!-- 1-->
<div id="bar-1" class="bar-main-container azure">
<div class="wrap">
<div class="bar-percentage" data-percentage="101"></div>
<div class="bar-container">
<div class="bar"></div>
</div>
</div>
</div>
<h6 class="skill">UDiD Registration Server Availability</h6>
<!-- 2 -->
<div id="bar-2" class="bar-main-container yellow">
<div class="wrap">
<div class="bar-percentage" data-percentage="101"></div>
<div class="bar-container">
<div class="bar"></div>
</div>
</div>
</div>
<h6 class="skill">iSignCloud Server Avaiability</h6>
<!-- 3 -->
<div id="bar-3" class="bar-main-container red">
<div class="wrap">
<div class="bar-percentage" data-percentage="96"></div>
<div class="bar-container">
<div class="bar"></div>
</div>
</div>
</div>
<h6 class="skill">Reseller Program Availability</h6>
<!--//SKILL BARS-->
</div><!--//col2-->
</div>
</div>
</div>
<!--COUNTERS-->
<div class="container pad45">
<div class="row">
<!--1-->
<div class="col-sm-4 col-lg-4 text-center">
<div id="counter-1" class="counter"></div>
<label>When It All Began</label>
</div>
<!--2-->
<div class="col-sm-4 col-lg-4 text-center">
<div id="counter-2" class="counter"></div>
<label>Succesfull UDiD Registrations</label>
</div>
<!--3-->
<div class="col-sm-4 col-lg-4 text-center">
<div id="counter-3" class="counter"></div>
<label>Brilliant Services Offered</label>
</div>
</div>
<!-- UDiD Checker -->
<a name="checker"></a>
<div class="text-center col-sm-12 col-lg-12">
<div class="pad30"> </div>
<br>
<br>
<h1>UDiD Checker</h1>
<h5><span class="grey">Check the status of your UDiD registration
<br>enter your UDiD or email below</span></h5>
<form method="get" action="status.php"><input type="text" placeholder="UDID or email" size="26" name="udid" required/>
<br/>
<br/><input type="submit" value="Check!"/></form>
</div>
<div class="pad90"></div>
</section>
<!--//SECTION 1-->
<!-- SECTION-2 PACKAGES -->
<a name="packages"></a>
<section id="Section-2">
<div class="container">
<div class="row">
<div class=" text-center col-sm-12 col-lg-12">
<h1>RegMyUDiD Packages</h1>
<p class="lead">Choose your desired UDiD registration package<br/><a href="http://regmyudid.ru">Are you from Russia or CIS? Check out Official RegMyUDiD reseller in Russia!</a>
</p>
</div>
</div>
<div class="pricing">
<!--block1-->
<div class="col-sm-6 col-lg-3 pricing-table text-center">
<ul>
<li class="pricing-header-row-1">
<div class="intro-icon-disc cont-large"><i class="icon-rocket intro-icon-large"></i></div>
Standard
</li>
<li class="pricing-header-row-2">
<h2 class="price">£6.99</h2>
</li>
<li class="pricing-content-row-odd">
Standard UDiD Registration
</li>
<li class="pricing-content-row-even">
This service is required if you only wish to install Apples latest iOS Beta's on your device. (no certs)<br><br>
</li>
<li class="pricing-content-row-odd">
Instant Registration
</li>
<li class="pricing-content-row-even">
12 Months Registration
</li>
<li class="pricing-content-row-odd">
365 Day Support
</li>
<li class="pricing-content-row-even">
<a href="#">More Info</a>
</li>
<li class="pricing-content-row-odd">
<a href="#terms">Terms</a>
</li>
<li class="pricing-footer">
<a class="btn btn-info" data-toggle="modal" href="#standard"><i class="icon-eye-open"></i> Sign Up</a>
</li>
</ul>
</div>
<!--block 2-->
<div class="col-sm-6 col-lg-3 pricing-table text-center">
<ul>
<li class="pricing-header-row-1">
<div class="intro-icon-disc cont-large"><i class="icon-cloud intro-icon-large"></i></div>
iSignCloud
</li>
<li class="pricing-header-row-2">
<h2 class="price">£11.99</h2>
</li>
<li class="pricing-content-row-odd">
Advanced UDiD Registration
</li>
<li class="pricing-content-row-even">
Required if you also want a developers certificates so you can use iSignCloud with AppAddict.<br><br>
</li>
<li class="pricing-content-row-odd">
Instant Registration
</li>
<li class="pricing-content-row-even">
12 Months Registration
</li>
<li class="pricing-content-row-odd">
365 Day Support
</li>
<li class="pricing-content-row-even">
<a data-toggle="modal" href="#project_1">More Info</a>
</li>
<li class="pricing-content-row-odd">
<a href="#terms">Terms</a>
</li>
<li class="pricing-footer">
<a class="btn btn-info" data-toggle="modal" href="#advanced"><i class="icon-eye-open"></i> Sign Up</a>
</li>
</ul>
</div>
<!--block 3-->
<div class="col-sm-6 col-lg-3 pricing-table text-center">
<ul>
<li class="pricing-header-row-1">
<div class="intro-icon-disc cont-large"><i class="icon-briefcase intro-icon-large"></i></div>
Premium Addon
</li>
<li class="pricing-header-row-2">
<h2 class="price">£15.99</h2>
</li>
<li class="pricing-content-row-odd">
RegMyUDiD Premium Addon
</li>
<li class="pricing-content-row-even">
This addon gives you premium iSignCloud with FREE bundled AppAddict premium services!<br><br>
</li>
<li class="pricing-content-row-odd">
Instant Access
</li>
<li class="pricing-content-row-even">
12 Months Registration
</li>
<li class="pricing-content-row-odd">
365 Day Premium Support
</li>
<li class="pricing-content-row-even">
<a href="#premium" data-toggle="modal">More Info</a>
</li>
<li class="pricing-content-row-odd">
<a href="#terms">Terms</a>
</li>
<li class="pricing-footer">
<a class="btn btn-info" data-toggle="modal" href="#premium-payment"><i class="icon-eye-open"></i> Sign Up</a>
</li>
</ul>
</div>
<!--block 4-->
<div class="col-sm-6 col-lg-3 pricing-table text-center">
<ul>
<li class="pricing-header-row-1">
<div class="intro-icon-disc cont-large"><i class="icon-group intro-icon-large"></i></div>
Resellers
</li>
<li class="pricing-header-row-2">
<h2 class="price">£Various</h2>
</li>
<li class="pricing-content-row-odd">
RegMyUDiD Reseller Services
</li>
<li class="pricing-content-row-even">
Own your own UDiD automated registration site, pre made websites with premium domains!<br><br>
</li>
<li class="pricing-content-row-odd">
Client Control Panel
</li>
<li class="pricing-content-row-even">
Performance Discounts
</li>
<li class="pricing-content-row-odd">
365 Day Support
</li>
<li class="pricing-content-row-even">
<a href="#reseller" data-toggle="modal">More Info</a>
</li>
<li class="pricing-content-row-odd">
<a href="#terms">Terms</a>
</li>
<li class="pricing-footer">
<a class="btn btn-info" data-toggle="modal" href="#reseller"><i class="icon-eye-open"></i> Sign Up</a>
</li>
</ul>
</div>
</div>
<!--//END-->
</div>
<div class="pad90"></div>
<!--QUOTES SECTION-->
<div class="well parallax-section">
<div class="container">
<div class="row">
<div class="col-sm-1 col-lg-1"></div>
<div class="col-sm-12 col-lg-10">
<!-- TESTIMONIALS -->
<div id="carousel" class="carousel2 slide center">
<div class="carousel-inner">
<!-- 1 -->
<div class="item active center">
<div class="quote">
<span class="icon-stack icon-2x">
<i class="icon-circle icon-stack-base blue"></i>
<i class="icon-bullhorn light"></i></span>
<p>UDiD registered in under 5 minutes! THIS IS A VERY GOOD SERVICE!</p>
</div>
<div class="quote-small">
- M. Graham -<br/>
<a href="#">Customer</a></div>
</div>
<!-- 2 -->
<div class="item">
<div class="quote">
<span class="icon-stack icon-2x">
<i class="icon-circle icon-stack-base blue"></i>
<i class="icon-bullhorn light"></i></span>
<p>Second UDiD registration, 2 mins and confirmation came. Super!</p>
</div>
<div class="quote-small">
- Steve McTavy -<br/>
<a href="#">Customer</a></div>
</div>
<!-- 3 -->
<div class="item">
<div class="quote">
<span class="icon-stack icon-2x">
<i class="icon-circle icon-stack-base blue"></i>
<i class="icon-bullhorn light"></i></span>
<p>Really fast turn around and a great price. iSignCloud rocks!!</p>
</div>
<div class="quote-small">
- Jo Phillips -<br/>
<a href="#">Customer</a>
</div>
</div>
<!-- 4 -->
<div class="item">
<div class="quote">
<span class="icon-stack icon-2x">
<i class="icon-circle icon-stack-base blue"></i>
<i class="icon-bullhorn light"></i></span>
<p>Awesome! I will be using my phone a lot more now! Thank you!!</p>
</div>
<div class="quote-small">
- Asif Khan -<br/>
<a href="#">Customer</a>
</div>
<div class="col-sm-1 col-lg-1"></div>
</div>
</div><!-- //END -->
</div>
</div>
</div>
</div>
</div>
<!-- //Section-2-->
<!-- //Payment-Modals-->
<!--START Standard Payment MODAL-->
<div id="standard" class="modal fade" tabindex="-1" role="dialog" aria-labelledby="standard" aria-hidden="true">
<div class="modal-body">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">
<i class="icon-remove-sign"></i></button><div class="pad25"></div>
<h2>Standard UDiD Registration - <font color="#37B3E0">£6.99</font></h2>
</div>
<div class="col-sm-6 col-lg-6 table-borderedgrey">
<center>
<h2>DalPay</h2>
<p class="lead"><font color="#00CC00">Instant Activation!
<br>0 - 15 Mins</font></p>
<p><strong>Your 40 Character Device UDiD</strong> <font color="#FF0000">**</font>
<br><a href="#find-udid" data-toggle="modal">What is My UDiD?</a></p>
<form action="https://secure.dalpay.is/cgi-bin/order2/processorder1.pl" method="POST">
<input type="hidden" name="MerchantID" value="130106">
<input type="hidden" name="PageID" value="1">
<input type="hidden" name="item1_qty" value="1">
<input type="hidden" name="item1_desc" value="Standard UDiD Activation">
<input type="hidden" name="item1_price" value="6.99">
<input name="user1" type="text" placeholder="in lowercase" required>
<br>
<br>
<br>
<input type="image" src="https://secure.dalpay.is/en_US/i/btn/btn_buynow_LG.gif" border="0" name="submit" alt="Buy Now from DalPay Retail - checkout is secure and private.">
</form>
<p>DalPay is an authorized retailer for<br />
goods and services provided by RegMyUDiD.</p>
<!--End of Dalpay-->
<br>
<p><strong><font color="#FF0000">Clicking the button above your agreeing to our <a href="#terms">TERMS</a></font></strong></p>
<br>
<p><strong>Registered for 12 months.</strong> International buyers welcome!
</p>
</center>
<div class="pad15"></div>
</div>
<div class="col-sm-6 col-lg-6 table-borderedgrey">
<center>
<h2>CCNow (PayPal)</h2>
<p class="lead"><font color="#FF9900">Semi-Instant Activation!
<br>0 - 4 Hours</font></p>
<p><strong>Your 40 Character Device UDiD</strong> <font color="#FF0000">**</font>
<br><a href="#find-udid" data-toggle="modal">What is My UDiD?</a></p>
<form method="POST" action="https://www.ccnow.com/cgi-local/cart.cgi">
<input type="hidden" name="clientid" value="regmyudid">
<input type="hidden" name="returnurl" value="https://regmyudid.com">
<input type="hidden" name="productid_3" value="SA-001">
<input type="hidden" name="quantity_3" value="1" size="5">
<textarea name="option1_3" rows="1" cols="20" wrap="on" placeholder="in lowercase"></textarea>
<br>
<br>
<br>
<input type="submit" class="btn btn-info" value="Buy Now From CCNow">
</form>
<p>CCNow is an authorized retailer for<br />
goods and services provided by RegMyUDiD.</p>
<br>
<p><strong><font color="#FF0000">Clicking the button above your agreeing to our <a href="#terms">TERMS</a></font></strong></p>
<br>
<p><strong>Registered for 12 months.</strong> International buyers welcome!
</p>
</center>
<div class="pad15"></div>
</div>
<br>
<br>
<div class="col-lg-12">
<center>
<p>
<br>
<br><font color="#FF0000"><strong>**Please take care entering your UDiD - UDiD's that start with FFFFFF or ffffff are invalid. Please refer to this guide <a href="#find-udid" data-toggle="modal">HERE</a> on how to correctly obtain your UDiD. DO NOT USE AN APP TO GET YOUR UDID!! Wrongly submitted UDiDs are non refundable!</strong></font></p>
<br>
<h4>Activation Times</h4>
<P><strong><span class="green">Instant Activation -</span></strong> Using <strong>RegMyUDiD</strong> direct card processing is the fastest way to get your UDiD registered its fully instant and takes less than 15 minutes to recieve your registration emails. Your card details are never stored, they are converted into a token at the point of entry and sent to the processing server in token form, so your details are never actually on any of our servers. We also use SHA2 256bit SSL connection just for added security.
<br>
<br><strong><font color="#FF6600">Semi Instant</font></strong> Using <strong>CCNow</strong> to pay via <strong>PayPal</strong> or Credit Card will take from 15 mins to 4 hours as they make checks on all orders before we get the oreder notification. If your order is flagged as possible fraudulent then this may take upto 24 hours.</P>
</center>
</div>
<div class="col-sm-12 col-lg-12 pad90 text-center">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">
<i class="icon-remove-sign"></i></button>
</div>
</div>
</div>
</div>
</div>
<!--//END Standard Payment MODAL-->
<!--START Advanced Payment MODAL-->
<div id="advanced" class="modal fade" tabindex="-1" role="dialog" aria-labelledby="advanced" aria-hidden="true">
<div class="modal-body">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">
<i class="icon-remove-sign"></i></button><div class="pad25"></div>
<h2>Advanced UDiD Registration - <font color="#37B3E0">£11.99</font></h2>
</div>
<div class="col-sm-6 col-lg-6 table-borderedgrey">
<center>
<h2>DalPay</h2>
<p class="lead"><font color="#00CC00">Instant Activation!
<br>0 - 15 Mins</font></p>
<p><strong>Your 40 Character Device UDiD</strong> <font color="#FF0000">**</font>
<br><a href="#find-udid" data-toggle="modal">What is My UDiD?</a></p>
<form action="https://secure.dalpay.is/cgi-bin/order2/processorder1.pl" method="POST">
<input type="hidden" name="MerchantID" value="130106">
<input type="hidden" name="PageID" value="1">
<input type="hidden" name="item1_qty" value="1">
<input type="hidden" name="item1_desc" value="Advanced UDiD Activation">
<input type="hidden" name="item1_price" value="11.99">
<input name="user1" type="text" placeholder="in lowercase" required>
<br>
<br>
<br>
<input type="image" src="https://secure.dalpay.is/en_US/i/btn/btn_buynow_LG.gif" border="0" name="submit" alt="Buy Now from DalPay Retail - checkout is secure and private.">
</form>
<p>DalPay is an authorized retailer for<br />
goods and services provided by RegMyUDiD.</p>
<!--End of Dalpay-->
<br>
<p><strong><font color="#FF0000">Clicking the button above your agreeing to our <a href="#terms">TERMS</a></font></strong></p>
<br>
<p><strong>Registered for 12 months.</strong> International buyers welcome!
</p>
</center>
<div class="pad15"></div>
</div>
<div class="col-sm-6 col-lg-6 table-borderedgrey">
<center>
<h2>CCNow (PayPal)</h2>
<p class="lead"><font color="#FF9900">Semi-Instant Activation!
<br>0 - 4 Hours</font></p>
<p><strong>Your 40 Character Device UDiD</strong> <font color="#FF0000">**</font>
<br><a href="#find-udid" data-toggle="modal">What is My UDiD?</a></p>
<form method="POST" action="https://www.ccnow.com/cgi-local/cart.cgi">
<input type="hidden" name="clientid" value="regmyudid">
<input type="hidden" name="returnurl" value="https://regmyudid.com">
<input type="hidden" name="productid_2" value="AA-002">
<input type="hidden" name="quantity_2" value="1" size="5">
<textarea name="option1_2" rows="1" cols="20" wrap="on" placeholder="in lowercase"></textarea>
<br>
<br>
<br>
<input type="submit" class="btn btn-info" value="Buy Now From CCNow">
</form>
<p>CCNow is an authorized retailer for<br />
goods and services provided by RegMyUDiD.</p>
<br>
<p><strong><font color="#FF0000">Clicking the button above your agreeing to our <a href="#terms">TERMS</a></font></strong></p>
<br>
<p><strong>Registered for 12 months.</strong> International buyers welcome!
</p>
</center>
<div class="pad15"></div>
</div>
<br>
<br>
<div class="col-lg-12">
<center>
<p>
<br>
<br><font color="#FF0000"><strong>**Please take care entering your UDiD - UDiD's that start with FFFFFF or ffffff are invalid. Please refer to this guide <a href="#find-udid" data-toggle="modal">HERE</a> on how to correctly obtain your UDiD. DO NOT USE AN APP TO GET YOUR UDID!! Wrongly submitted UDiDs are non refundable!</strong></font></p>
<br>
<h4>Activation Times</h4>
<P><strong><span class="green">Instant Activation -</span></strong> Using <strong>RegMyUDiD</strong> direct card processing is the fastest way to get your UDiD registered its fully instant and takes less than 15 minutes to recieve your registration emails. Your card details are never stored, they are converted into a token at the point of entry and sent to the processing server in token form, so your details are never actually on any of our servers. We also use SHA2 256bit SSL connection just for added security.
<br>
<br><strong><font color="#FF6600">Semi Instant</font></strong> Using <strong>CCNow</strong> to pay via <strong>PayPal</strong> or Credit Card will take from 15 mins to 4 hours as they make checks on all orders before we get the oreder notification. If your order is flagged as possible fraudulent then this may take upto 24 hours.</P>
</center>
</div>
<div class="col-sm-12 col-lg-12 pad90 text-center">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">
<i class="icon-remove-sign"></i></button>
</div>
</div>
</div>
</div>
</div>
<!--//END Advanced Payment MODAL-->
<!--START Premium Payment MODAL-->
<div id="premium-payment" class="modal fade" tabindex="-1" role="dialog" aria-labelledby="premium-payment" aria-hidden="true">
<div class="modal-body">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">
<i class="icon-remove-sign"></i></button><div class="pad25"></div>
<h2>Premium Registration - <font color="#37B3E0">£15.99</font></h2>
<p>You can <strong>add upto 3 of your previously registered devices</strong> with our advanced registration service to work on the premium iSignCloud server. If you are only requiring the use of AppAddict premium please leave the 3 UDiD fields blank and just fill in the AppAddict ID email address at the botom of the form!
<br>
<br><strong>For more information on RegMyUDiD Premium please see <a href="#premium" data-toggle="modal">HERE</a></strong>
</div>
<div class="col-sm-6 col-lg-6 table-borderedgrey">
<center>
<h2>DalPay</h2>
<p class="lead"><font color="#00CC00">Instant Premium Access!
<br>0 - 15 Mins</font></p>
<p><strong>Your 40 Character Device UDiD</strong> <font color="#FF0000">**</font>
<br><a href="#find-udid" data-toggle="modal">What is My UDiD?</a></p>
<form action="https://secure.dalpay.is/cgi-bin/order2/processorder1.pl" method="POST">
<input type="hidden" name="MerchantID" value="130106">
<input type="hidden" name="PageID" value="1">
<input type="hidden" name="item1_qty" value="1">
<input type="hidden" name="item1_desc" value="RegMyUDiD Premium">
<input type="hidden" name="item1_price" value="15.99">
<p>Device 1 - (Must be previously registered)</p>
<input name="user1" type="text" placeholder="in lowercase">
<p>Device 2 - (Must be previously registered)</p>
<input name="user2" type="text" placeholder="in lowercase">
<p>Device 3 - (Must be previously registered)</p>
<input name="user3" type="text" placeholder="in lowercase">
<br>
<br>
<p>AppAddict ID email address to Assign your premium to?</p>
<input name="user4" type="text" placeholder="[email protected]">
<br>
<br>
<br>
<p><strong>Coming Very Soon!</strong></p>
<!-- <input type="image" src="https://secure.dalpay.is/en_US/i/btn/btn_buynow_LG.gif" border="0" name="submit" alt="Buy Now from DalPay Retail - checkout is secure and private."> -->
</form>
<p>DalPay is an authorized retailer for<br />
goods and services provided by RegMyUDiD.</p>
<!--End of Dalpay-->
<br>
<p><strong><font color="#FF0000">Clicking the button above your agreeing to our <a href="#terms">TERMS</a></font></strong></p>
<br>
<p><strong>Registered for 12 months.</strong> International buyers welcome!
</p>
</center>
<div class="pad15"></div>
</div>
<div class="col-sm-6 col-lg-6 table-borderedgrey">
<center>
<h2>CCNow (PayPal)</h2>
<p class="lead"><font color="#FF9900">Semi-Instant Activation!
<br>0 - 4 Hours</font></p>
<p><strong>Your 40 Character Device UDiD</strong> <font color="#FF0000">**</font>
<br><a href="#find-udid" data-toggle="modal">What is My UDiD?</a></p>
<form method="POST" action="https://www.ccnow.com/cgi-local/cart.cgi">
<input type="hidden" name="clientid" value="regmyudid">
<input type="hidden" name="returnurl" value="https://regmyudid.com">
<input type="hidden" name="productid_3" value="RMUPREM">
<input type="hidden" name="quantity_3" value="1" size="5">
<p>Device 1 - (Must be previously registered)</p>
<textarea name="option1_3" rows="1" cols="20" wrap="on" placeholder="in lowercase"></textarea>
<p>Device 2 - (Must be previously registered)</p>
<textarea name="option2_3" rows="1" cols="20" wrap="on" placeholder="in lowercase"></textarea>
<p>Device 3 - (Must be previously registered)</p>
<textarea name="option3_3" rows="1" cols="20" wrap="on" placeholder="in lowercase"></textarea>
<br>
<br>
<p>AppAddict ID email address to Assign your premium to?</p>
<textarea name="option4_3" rows="1" cols="20" wrap="on" placeholder="[email protected]"></textarea>
<br>
<br>
<br>
<p><strong>Coming Very Soon!</strong></p>
<!-- <input type="submit" class="btn btn-info" value="Buy Now From CCNow"> -->
</form>
<p>CCNow is an authorized retailer for<br />
goods and services provided by RegMyUDiD.</p>
<br>
<p><strong><font color="#FF0000">Clicking the button above your agreeing to our <a href="#terms">TERMS</a></font></strong></p>
<br>
<p><strong>Registered for 12 months.</strong> International buyers welcome!
</p>
</center>
<div class="pad15"></div>
</div>
<br>
<br>
<div class="col-lg-12">
<center>
<p>
<br>
<br><font color="#FF0000"><strong>**Please take care entering your UDiD - UDiD's that start with FFFFFF or ffffff are invalid. Please refer to this guide <a href="#find-udid" data-toggle="modal">HERE</a> on how to correctly obtain your UDiD. DO NOT USE AN APP TO GET YOUR UDID!! Wrongly submitted UDiDs are non refundable!</strong></font></p>
<br>
<h4>Activation Times</h4>
<P><strong><span class="green">Instant Activation -</span></strong> Using <strong>RegMyUDiD</strong> direct card processing is the fastest way to get your UDiD registered its fully instant and takes less than 15 minutes to recieve your registration emails. Your card details are never stored, they are converted into a token at the point of entry and sent to the processing server in token form, so your details are never actually on any of our servers. We also use SHA2 256bit SSL connection just for added security.
<br>
<br><strong><font color="#FF6600">Semi Instant</font></strong> Using <strong>CCNow</strong> to pay via <strong>PayPal</strong> or Credit Card will take from 15 mins to 4 hours as they make checks on all orders before we get the oreder notification. If your order is flagged as possible fraudulent then this may take upto 24 hours.</P>
</center>
</div>
<div class="col-sm-12 col-lg-12 pad90 text-center">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">
<i class="icon-remove-sign"></i></button>
</div>
</div>
</div>
</div>
</div>
<!--//END Premium Payment MODAL-->
<!--START Premium Info MODAL-->
<div id="premium" class="modal fade" tabindex="-1" role="dialog" aria-labelledby="premium" aria-hidden="true">
<div class="modal-body">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">
<i class="icon-remove-sign"></i></button><div class="pad25"></div>
<h2>RegMyUDiD Premium - <font color="#37B3E0">£15.99</font></h2>
<center>
<img src="img/logo_alt.png">
</center>
<br>
<p>This is a seperate addon package and <strong>does not</strong> include UDiD registration at all! Its a one off payment like all packages is valid for 12 months! You are able to add upto <strong>three</strong> of your <strong>PREVIOUS</strong> advanced registration devices to this add-on for one same price!
<br>
<br>Purchasing this service will give you access to our <strong>premium iSignCloud server</strong>. This is seperate server to the normal resign server, it has much <strong>higher bandwidth</strong> with a lot <strong>less congestion</strong> resulting in <strong>blazing fast resigning and downloading</strong> of apps! This is an introductionary price of ONLY <font color="#009900"><strong>£15.99</strong></font> for the first few weeks, after this we expect the price to be about £22.99. So grab it now while its cheap!
<br>
<br>Also as a premium customer you will recieve <strong>premium suport</strong>. You will be given access to email a premium support address that only premium customer are able to send to. Our support is second to none at the best of times but this will ensure that you recieve priority support. There will be dedicated members solely responsible for dealing with any premium queries.
<br>
<br>Another great benefit of becoming a premium customer means that when we are developing new features and services you will be eligable to beta test these for free untill they are officialy released. You will also be given offers from time to time to save you money on any future registrations or services you may purchase from us in the future!</p>
<br>
<br>
<a href="https://appaddict.org" target="_blank"><img src="img/instasign/email/ap.png" alt="AppAddict Premium" class="no-resize-aapremium center"></a>
<br>
<h2>FREE AppAddict Premium!</h2>
<p>This just puts the icing on the cake! AppAddict our freinds have agreed to throw in a nice juicy bonus for all you RegMyUDiD premium customers!! When you purchace RegMyUDiD Premium You will also recieve a <strong>full year of AppAddict Premium!</strong>
<br>This is worth £25 on its own so for this free gift alone makes the premium package an excellent <strong>value for money</strong> offer!
<br>
<br><strong>For more information on AppAddict premium please see <a href="https://www.appaddict.org/premium.php" target="_blank">HERE</a></strong>
<br>
<br><strong>The best thing is you dont need to have bought UDiD registration from us to purchase this package if you are only wanting this to get the FREE AppAddict Premium that comes bundled.</strong></p>
<br>
<br><a class="btn btn-info" data-toggle="modal" href="#premium-payment"><i class="icon-eye-open"></i> Sign Up</a>
</div>
<div class="col-sm-12 col-lg-12 pad90 text-center">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">
<i class="icon-remove-sign"></i></button>
</div>
</div>
</div>
</div>
</div>
<!--//END Premium Info MODAL-->