-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathindex.html
More file actions
710 lines (682 loc) · 44.5 KB
/
Copy pathindex.html
File metadata and controls
710 lines (682 loc) · 44.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>SideInstaller — Install</title>
<meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover">
<meta name="color-scheme" content="dark">
<meta name="theme-color" content="#000000">
<style>
/* Palette mirrors the app's Theme.swift: OLED black backdrop, brand blues
accent #2170F5 -> accent2 #4DADFF, deep-navy glow #011A5C. */
:root{
--card:rgba(23,28,42,.62); --card-hover:rgba(32,38,58,.72);
--stroke:rgba(255,255,255,.07); --stroke-strong:rgba(255,255,255,.14);
--text:#f4f6fb; --muted:#9ba3b8; --faint:#6c7386;
--accent:#2170f5; --accent2:#4dadff; --glow:#011a5c;
--brand:linear-gradient(135deg,var(--accent),var(--accent2));
--good:#34d399; --warn:#fbbf24; --crit:#fb923c; --bad:#f87171;
--radius:22px; --radius-btn:18px; --radius-sm:14px;
}
*{box-sizing:border-box}
/* overflow-x:clip on the root kills any phantom horizontal overflow. Without
it, a few stray pixels of width make iOS Safari anchor the fixed .bg to the
layout viewport while the page scrolls, leaving an uncovered strip down the
right edge the full height of the page. clip (not hidden) avoids creating a
scroll container, so the fixed backdrop still pins to the viewport. */
html{-webkit-text-size-adjust:100%; overflow-x:clip; background:#000}
body{
margin:0; min-height:100vh; color:var(--text);
font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Inter,Roboto,sans-serif;
line-height:1.55; background:transparent; overflow-x:clip; /* transparent so the fixed .bg backdrop shows through; html keeps the #000 backstop */
padding:max(20px,env(safe-area-inset-top)) 18px 64px;
}
/* ---- backdrop ----
Same vibe as the app: OLED black with a deep-blue glow behind the hero, a
faint navy wash through the middle, and a low glow at the foot of the
screen. Plain CSS radial gradients on one fixed layer — no canvas, no JS,
no filter:blur (iOS Safari mis-renders large blurs on fixed layers).
::before repaints the hero glow in a brighter sky blue and slowly fades in
and out, so the backdrop gently breathes like the app's mesh. */
.bg{
position:fixed; inset:0; z-index:-1; pointer-events:none;
background:
radial-gradient(75% 42% at 50% 16%, rgba(33,112,245,.38), transparent 65%),
radial-gradient(140% 80% at 50% 50%, rgba(14,44,110,.35), transparent 78%),
radial-gradient(55% 32% at 82% 70%, rgba(77,173,255,.10), transparent 70%),
radial-gradient(80% 32% at 50% 102%, rgba(33,112,245,.18), transparent 72%),
#000;
}
.bg::before{
content:""; position:absolute; inset:0;
background:radial-gradient(70% 40% at 50% 18%, rgba(77,173,255,.14), transparent 65%);
animation:bg-breathe 9s ease-in-out infinite alternate;
}
@keyframes bg-breathe{from{opacity:0}to{opacity:1}}
/* ---- entrance cascade, echoing the app's per-object settle-in ---- */
.hero,.step,.footer{animation:rise .5s cubic-bezier(.22,.9,.35,1) both}
.step:nth-of-type(1){animation-delay:.06s}
.step:nth-of-type(2){animation-delay:.12s}
.step:nth-of-type(3){animation-delay:.18s}
.footer{animation-delay:.24s}
@keyframes rise{from{opacity:0; transform:translateY(16px) scale(.98)}}
@media (prefers-reduced-motion:reduce){
.bg::before{animation:none; opacity:0}
.hero,.step,.footer{animation:none}
}
.wrap{max-width:920px; margin:0 auto}
/* ---- hero ---- */
.hero{text-align:center; padding:18px 8px 8px}
.logo{
width:96px; height:96px; margin:0 auto 18px; display:grid; place-items:center;
border-radius:23px; background:linear-gradient(150deg,#0d1530,#05070f);
border:1px solid var(--stroke-strong);
box-shadow:0 12px 40px rgba(33,112,245,.32), 0 18px 60px rgba(1,26,92,.85), inset 0 1px 0 rgba(255,255,255,.06);
overflow:hidden;
}
.logo img{width:100%; height:100%; object-fit:cover}
.logo svg{width:54px; height:54px}
h1{margin:0; color:#fff; font-size:clamp(28px,6vw,40px); font-weight:800; letter-spacing:-.02em}
.tagline{margin:8px auto 0; max-width:540px; color:var(--muted); font-size:16px}
.badges{display:flex; gap:10px; justify-content:center; flex-wrap:wrap; margin-top:18px}
.badge{
font-size:13px; font-weight:600; color:var(--muted);
padding:7px 14px; border-radius:999px; background:var(--card); border:1px solid var(--stroke);
}
.badge b{color:var(--text)}
/* ---- hero links: social row above, repo/download row below ---- */
.links{display:flex; gap:10px; justify-content:center; flex-wrap:wrap; margin-top:18px}
.links.repo{margin-top:10px}
.link-btn{
display:inline-flex; align-items:center; gap:8px;
padding:10px 16px; font-size:14px; font-weight:700; text-decoration:none;
color:var(--text); border-radius:999px; cursor:pointer; font-family:inherit;
background:var(--card); border:1px solid var(--stroke);
transition:transform .14s, background .14s, border-color .14s, filter .14s;
}
.link-btn svg{width:17px; height:17px; flex:none}
.link-btn:hover{background:var(--card-hover); border-color:var(--stroke-strong); transform:translateY(-2px)}
.link-btn:active{transform:scale(.97)}
.link-btn.discord{color:#fff; background:#5865f2; border-color:transparent}
.link-btn.discord:hover{background:#5865f2; filter:brightness(1.08)}
.link-btn.kofi{color:#fff; background:#ff5e5b; border-color:transparent}
.link-btn.kofi:hover{background:#ff5e5b; filter:brightness(1.08)}
.link-btn.youtube{color:#fff; background:#ff0000; border-color:transparent}
.link-btn.youtube:hover{background:#ff0000; filter:brightness(1.08)}
.link-btn.ipa{padding:8px 13px; font-size:12.5px; font-weight:600; color:var(--muted)}
.link-btn.ipa svg{width:15px; height:15px}
.link-btn.ipa:hover{color:var(--text)}
/* ---- tutorial popup ---- */
.modal{position:fixed; inset:0; z-index:50; display:grid; place-items:center; padding:20px}
.modal[hidden]{display:none}
.modal-backdrop{position:absolute; inset:0; background:rgba(0,0,0,.6)}
.modal-card{
position:relative; width:min(420px,100%); padding:20px;
background:rgba(17,22,36,.92); border:1px solid var(--stroke-strong); border-radius:var(--radius);
-webkit-backdrop-filter:blur(24px) saturate(140%); backdrop-filter:blur(24px) saturate(140%);
box-shadow:0 24px 70px rgba(0,0,0,.55);
animation:modal-pop .22s cubic-bezier(.22,.9,.35,1) both;
}
@keyframes modal-pop{from{opacity:0; transform:translateY(14px) scale(.96)}}
@media (prefers-reduced-motion:reduce){ .modal-card{animation:none} }
.modal-head{display:flex; align-items:center; justify-content:space-between; gap:10px; margin-bottom:14px}
.modal-title{margin:0; font-size:18px; font-weight:800; letter-spacing:-.01em}
.modal-close{
display:grid; place-items:center; width:32px; height:32px; padding:0;
color:var(--muted); background:var(--card); border:1px solid var(--stroke); border-radius:999px;
cursor:pointer; transition:background .14s, color .14s;
}
.modal-close:hover{color:var(--text); background:var(--card-hover)}
.modal-close svg{width:15px; height:15px}
.modal-links{display:flex; flex-direction:column; gap:10px}
.modal-link{
display:flex; align-items:center; gap:13px; padding:14px 16px; text-decoration:none;
background:var(--card); border:1px solid var(--stroke); border-radius:var(--radius-sm);
transition:background .14s, border-color .14s, transform .14s;
}
.modal-link:hover{background:var(--card-hover); border-color:var(--stroke-strong); transform:translateY(-1px)}
.modal-link:active{transform:scale(.98)}
.modal-link-icon{
flex:none; width:38px; height:38px; display:grid; place-items:center;
color:#fff; background:#ff0000; border-radius:12px;
}
.modal-link-icon svg{width:18px; height:18px}
.modal-link-text{min-width:0}
.modal-link-text b{display:block; color:var(--text); font-size:15px; font-weight:700}
.modal-link-text small{display:block; color:var(--muted); font-size:12.5px; margin-top:1px}
.modal-link-arrow{margin-left:auto; flex:none; width:16px; height:16px; color:var(--faint)}
/* ---- steps ---- */
.step{margin-top:34px}
.step-head{display:flex; align-items:center; gap:14px; margin-bottom:14px}
.step-num{
flex:none; width:34px; height:34px; display:grid; place-items:center;
font-size:16px; font-weight:800; color:#fff; border-radius:12px;
background:var(--brand);
box-shadow:0 8px 22px rgba(33,112,245,.35);
}
.step-title{margin:0; font-size:20px; font-weight:800; letter-spacing:-.01em}
.step-sub{margin:2px 0 0; color:var(--muted); font-size:13.5px}
.step-card{
padding:18px 20px; color:var(--muted); font-size:14.5px;
background:var(--card); border:1px solid var(--stroke); border-radius:var(--radius);
-webkit-backdrop-filter:blur(20px) saturate(140%); backdrop-filter:blur(20px) saturate(140%);
box-shadow:0 7px 14px rgba(0,0,0,.07);
}
.step-card p{margin:0}
.step-card b{color:var(--text)}
.step-card ol{margin:14px 0 0; padding-left:20px}
.step-card li{margin:8px 0}
.step-card code{
background:rgba(255,255,255,.07); padding:1px 6px; border-radius:6px;
font-size:13px; color:var(--text);
}
.step-card .install-btn{width:100%; margin-top:16px}
.callout{
margin-top:16px; padding:13px 16px; border-radius:var(--radius-sm);
background:rgba(52,211,153,.08); border:1px solid rgba(52,211,153,.25);
}
.callout b{color:var(--good)}
/* ---- TOS gate ----
Downloads stay dimmed and non-interactive until the box is ticked. */
.tos-gate{
display:flex; align-items:center; gap:12px; margin:0 0 14px; padding:15px 18px;
background:rgba(33,112,245,.08); border:1px solid rgba(33,112,245,.3);
border-radius:var(--radius-sm); cursor:pointer;
-webkit-user-select:none; user-select:none;
}
.tos-gate input{position:absolute; width:1px; height:1px; opacity:0; pointer-events:none}
.tos-gate .box{
flex:none; width:22px; height:22px; border-radius:7px; display:grid; place-items:center;
background:rgba(255,255,255,.06); border:1px solid var(--stroke-strong);
transition:background .15s, border-color .15s, box-shadow .15s;
}
.tos-gate .box svg{width:13px; height:13px; color:#fff; opacity:0; transform:scale(.6); transition:opacity .15s, transform .15s}
.tos-gate input:checked ~ .box{background:var(--brand); border-color:transparent; box-shadow:0 4px 14px rgba(33,112,245,.4)}
.tos-gate input:checked ~ .box svg{opacity:1; transform:scale(1)}
.tos-gate input:focus-visible ~ .box{outline:2px solid var(--accent2); outline-offset:2px}
.tos-text{color:var(--muted); font-size:14.5px}
.tos-text b{color:var(--text)}
.tos-text a{color:var(--accent2); text-decoration:none; font-weight:600}
.tos-text a:hover{text-decoration:underline}
.grid{transition:opacity .25s, filter .25s}
.grid.locked{opacity:.4; filter:saturate(.6); pointer-events:none}
/* ---- controls ---- */
.controls{
display:flex; gap:10px; margin:0 0 14px; flex-wrap:wrap; align-items:center;
}
.search{position:relative; flex:1 1 240px}
.search svg{position:absolute; left:14px; top:50%; transform:translateY(-50%); width:18px; height:18px; color:var(--faint)}
.search input{
width:100%; padding:13px 14px 13px 42px; font-size:15px; color:var(--text);
background:var(--card); border:1px solid var(--stroke); border-radius:var(--radius-sm);
outline:none; transition:border-color .15s, background .15s;
}
.search input:focus{border-color:var(--accent); background:var(--card-hover)}
.search input::placeholder{color:var(--faint)}
.sort{
padding:13px 38px 13px 14px; font-size:14px; font-weight:600; color:var(--text);
background:var(--card) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%239ba3b8' stroke-width='2.5' stroke-linecap='round'><path d='M6 9l6 6 6-6'/></svg>") no-repeat right 14px center;
border:1px solid var(--stroke); border-radius:var(--radius-sm); outline:none;
appearance:none; -webkit-appearance:none; cursor:pointer;
}
/* ---- cert grid ---- */
.grid{display:grid; grid-template-columns:repeat(auto-fill,minmax(248px,1fr)); gap:14px}
.cert-card{
display:flex; flex-direction:column; gap:12px; padding:18px;
background:var(--card); border:1px solid var(--stroke); border-radius:var(--radius);
-webkit-backdrop-filter:blur(20px) saturate(140%); backdrop-filter:blur(20px) saturate(140%);
box-shadow:0 7px 14px rgba(0,0,0,.07);
transition:transform .16s ease, border-color .16s, background .16s;
}
.cert-card:hover{transform:translateY(-3px); background:var(--card-hover); border-color:var(--stroke-strong)}
.cert-head{display:flex; align-items:flex-start; justify-content:space-between; gap:10px}
.cert-name{margin:0; font-size:17px; font-weight:700; min-width:0; word-break:break-word; overflow-wrap:anywhere}
.cert-meta{margin:0; font-size:12.5px; color:var(--faint)}
.pill{
flex:none; font-size:11.5px; font-weight:700; letter-spacing:.01em;
padding:5px 10px; border-radius:999px; white-space:nowrap;
border:1px solid transparent;
}
.pill.good{color:var(--good); background:rgba(52,211,153,.12); border-color:rgba(52,211,153,.25)}
.pill.warn{color:var(--warn); background:rgba(251,191,36,.12); border-color:rgba(251,191,36,.25)}
.pill.crit{color:var(--crit); background:rgba(251,146,60,.13); border-color:rgba(251,146,60,.28)}
.pill.bad{color:var(--bad); background:rgba(248,113,113,.13); border-color:rgba(248,113,113,.3)}
.pill.unknown{color:var(--muted); background:rgba(255,255,255,.05); border-color:var(--stroke)}
.install-btn{
margin-top:auto; display:inline-flex; align-items:center; justify-content:center; gap:8px;
padding:13px 16px; font-size:15px; font-weight:700; text-decoration:none; color:#fff;
border-radius:var(--radius-btn);
background:var(--brand);
box-shadow:0 8px 24px rgba(33,112,245,.4);
transition:transform .14s, box-shadow .14s, filter .14s;
}
.install-btn svg{width:17px; height:17px}
.install-btn:hover{filter:brightness(1.08); box-shadow:0 12px 30px rgba(77,173,255,.45)}
.install-btn:active{transform:scale(.97)}
.cert-card[data-days^="-"] .install-btn{filter:saturate(.5) brightness(.85)}
.empty{display:none; text-align:center; color:var(--muted); padding:50px 0; font-size:15px}
.empty.show{display:block}
/* ---- how-to ---- */
details.howto{
margin-top:14px; background:var(--card); border:1px solid var(--stroke);
border-radius:var(--radius); overflow:hidden;
-webkit-backdrop-filter:blur(20px) saturate(140%); backdrop-filter:blur(20px) saturate(140%);
}
details.howto summary{
list-style:none; cursor:pointer; padding:16px 20px; font-weight:700; font-size:15px;
display:flex; align-items:center; justify-content:space-between; gap:10px;
}
details.howto summary::-webkit-details-marker{display:none}
details.howto summary::after{content:"+"; color:var(--muted); font-size:20px; font-weight:400; transition:transform .2s}
details.howto[open] summary::after{transform:rotate(45deg)}
.howto-body{padding:0 20px 20px; color:var(--muted); font-size:14.5px}
.howto-body ol{margin:0; padding-left:20px}
.howto-body li{margin:8px 0}
.howto-body code{
background:rgba(255,255,255,.07); padding:1px 6px; border-radius:6px;
font-size:13px; color:var(--text);
}
.footer{margin-top:40px; text-align:center; color:var(--faint); font-size:13px}
.footer a{color:var(--muted); text-decoration:none}
.footer a:hover{color:var(--text)}
@media (max-width:520px){
.grid{grid-template-columns:1fr}
.controls{flex-direction:column; align-items:stretch}
.search{flex:0 0 auto} /* in column direction the 240px basis becomes height */
.sort{width:100%}
}
</style>
</head>
<body>
<div class="bg" aria-hidden="true"></div>
<div class="wrap">
<header class="hero">
<div class="logo"><img src="https://raw.githubusercontent.com/FrizzleM/SideInstaller/main/app-icon.png" alt="SideInstaller"></div>
<h1>SideInstaller</h1>
<p class="tagline">On-device sideloader. Follow the three steps below to get set up.</p>
<div class="badges">
<span class="badge">Version <b>0.6.1</b></span>
<span class="badge"><b>22</b> certificates</span>
</div>
<div class="links social">
<button type="button" class="link-btn youtube" id="tutorialBtn" aria-haspopup="dialog" aria-controls="tutorialModal">
<svg viewBox="0 0 24 24" fill="currentColor" aria-hidden="true"><path d="M23.498 6.186a3.016 3.016 0 0 0-2.122-2.136C19.505 3.545 12 3.545 12 3.545s-7.505 0-9.377.505A3.017 3.017 0 0 0 .502 6.186C0 8.07 0 12 0 12s0 3.93.502 5.814a3.016 3.016 0 0 0 2.122 2.136c1.871.505 9.376.505 9.376.505s7.505 0 9.377-.505a3.015 3.015 0 0 0 2.122-2.136C24 15.93 24 12 24 12s0-3.93-.502-5.814zM9.545 15.568V8.432L15.818 12l-6.273 3.568z"/></svg>
Tutorial
</button>
<a class="link-btn discord" href="https://discord.gg/sQ5Y8vbYJS" target="_blank" rel="noopener">
<svg viewBox="0 0 24 24" fill="currentColor" aria-hidden="true"><path d="M20.317 4.369a19.79 19.79 0 0 0-4.885-1.515.074.074 0 0 0-.079.037c-.211.375-.446.865-.61 1.249a18.27 18.27 0 0 0-5.487 0 12.6 12.6 0 0 0-.617-1.25.077.077 0 0 0-.079-.036A19.74 19.74 0 0 0 3.677 4.37a.07.07 0 0 0-.032.027C.533 9.046-.32 13.58.099 18.057a.082.082 0 0 0 .031.057 19.9 19.9 0 0 0 5.993 3.03.078.078 0 0 0 .084-.028 14.1 14.1 0 0 0 1.226-1.994.076.076 0 0 0-.041-.106 13.1 13.1 0 0 1-1.872-.892.077.077 0 0 1-.008-.128 10.2 10.2 0 0 0 .372-.292.074.074 0 0 1 .077-.01c3.928 1.793 8.18 1.793 12.061 0a.074.074 0 0 1 .078.009c.12.098.246.198.373.292a.077.077 0 0 1-.006.127 12.3 12.3 0 0 1-1.873.893.077.077 0 0 0-.041.106c.36.698.772 1.362 1.225 1.993a.076.076 0 0 0 .084.028 19.84 19.84 0 0 0 6.002-3.03.077.077 0 0 0 .032-.054c.5-5.177-.838-9.674-3.549-13.66a.061.061 0 0 0-.031-.03zM8.02 15.331c-1.182 0-2.157-1.085-2.157-2.419 0-1.333.955-2.419 2.157-2.419 1.21 0 2.176 1.096 2.157 2.42 0 1.333-.956 2.418-2.157 2.418zm7.975 0c-1.182 0-2.157-1.085-2.157-2.419 0-1.333.955-2.419 2.157-2.419 1.21 0 2.176 1.096 2.157 2.42 0 1.333-.946 2.418-2.157 2.418z"/></svg>
Join the Discord
</a>
<a class="link-btn kofi" href="https://ko-fi.com/frizzlem" target="_blank" rel="noopener">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><path d="M18 8h1a4 4 0 0 1 0 8h-1"/><path d="M2 8h16v9a4 4 0 0 1-4 4H6a4 4 0 0 1-4-4V8z"/><line x1="6" y1="1" x2="6" y2="4"/><line x1="10" y1="1" x2="10" y2="4"/><line x1="14" y1="1" x2="14" y2="4"/></svg>
Ko-fi
</a>
</div>
<div class="links repo">
<a class="link-btn ipa" href="https://github.com/FrizzleM/SideInstaller/releases/latest" target="_blank" rel="noopener">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><path d="M12 3v12"/><path d="M7 11l5 5 5-5"/><path d="M5 21h14"/></svg>
Download IPA
</a>
<a class="link-btn github" href="https://github.com/FrizzleM/SideInstaller/tree/main" target="_blank" rel="noopener">
<svg viewBox="0 0 24 24" fill="currentColor" aria-hidden="true"><path d="M12 .297c-6.63 0-12 5.373-12 12 0 5.303 3.438 9.8 8.205 11.385.6.113.82-.258.82-.577 0-.285-.01-1.04-.015-2.04-3.338.724-4.042-1.61-4.042-1.61-.546-1.387-1.333-1.756-1.333-1.756-1.089-.745.083-.729.083-.729 1.205.084 1.839 1.237 1.839 1.237 1.07 1.834 2.807 1.304 3.492.997.107-.775.418-1.305.762-1.605-2.665-.3-5.466-1.332-5.466-5.93 0-1.31.465-2.38 1.235-3.22-.135-.303-.54-1.523.105-3.176 0 0 1.005-.322 3.3 1.23a11.5 11.5 0 0 1 3.003-.404c1.02.005 2.047.138 3.006.404 2.291-1.552 3.297-1.23 3.297-1.23.653 1.653.242 2.873.12 3.176.765.84 1.23 1.91 1.23 3.22 0 4.61-2.805 5.625-5.475 5.92.42.36.81 1.096.81 2.22 0 1.606-.015 2.896-.015 3.286 0 .315.21.69.825.57C20.565 22.092 24 17.592 24 12.297c0-6.627-5.373-12-12-12z"/></svg>
GitHub
</a>
</div>
</header>
<section class="step" id="setup">
<div class="step-head">
<span class="step-num">1</span>
<div>
<h2 class="step-title">Setup</h2>
<p class="step-sub">Install the SideInstaller DNS profile before anything else.</p>
</div>
</div>
<div class="step-card">
<p>SideInstaller needs its DNS active on your device during setup. Tap the button, then follow the steps to apply it:</p>
<a class="install-btn" href="SideInstallerDNS.mobileconfig">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><circle cx="12" cy="12" r="9"/><path d="M3.6 9h16.8"/><path d="M3.6 15h16.8"/><path d="M12 3a15.3 15.3 0 0 1 0 18"/><path d="M12 3a15.3 15.3 0 0 0 0 18"/></svg>
Install DNS Profile
</a>
<ol>
<li>Tap <b>Install DNS Profile</b> above and tap <b>Allow</b> when Safari asks to download the configuration profile. If it gets saved as a regular file instead, open it from <code>Files → Downloads</code>.</li>
<li>Open <code>Settings</code> and tap <b>Profile Downloaded</b> (or go to <code>Settings → General → VPN & Device Management</code>), then tap <b>Install</b>.</li>
<li>Apply the DNS: in <code>Settings → General → VPN & Device Management</code>, open <b>DNS</b> and make sure <b>SideInstaller</b> is selected. Keep it enabled until setup is complete.</li>
</ol>
</div>
</section>
<section class="step" id="installation">
<div class="step-head">
<span class="step-num">2</span>
<div>
<h2 class="step-title">Installation</h2>
<p class="step-sub">Pick a certificate and install the SideInstaller app.</p>
</div>
</div>
<label class="tos-gate">
<input type="checkbox" id="tosCheck">
<span class="box" aria-hidden="true"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="3.2" stroke-linecap="round" stroke-linejoin="round"><path d="M4 12.5l5.5 5.5L20 6.5"/></svg></span>
<span class="tos-text">I have read and accept the <a href="terms.html" target="_blank" rel="noopener">Terms of Service</a>.</span>
</label>
<div class="controls">
<div class="search">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round"><circle cx="11" cy="11" r="7"/><path d="M21 21l-4.3-4.3"/></svg>
<input id="q" type="search" placeholder="Search certificates…" autocomplete="off" spellcheck="false">
</div>
<select id="sort" class="sort" aria-label="Sort certificates">
<option value="days">Most days left</option>
<option value="days-asc">Soonest to expire</option>
<option value="name">Name (A–Z)</option>
</select>
</div>
<main id="grid" class="grid">
<article class="cert-card" data-name="Moving-Increasingly-Interconnected-Technology-Co.-Ltd-com.oa11" data-days="1065">
<div class="cert-head">
<h3 class="cert-name">Moving-Increasingly-Interconnected-Technology-Co.-Ltd-com.oa11</h3>
<span class="pill good">1065 days left</span>
</div>
<p class="cert-meta">Expires 2029-06-12</p>
<a class="install-btn" href="itms-services://?action=download-manifest&url=https://raw.githubusercontent.com/FrizzleM/SideInstaller/main/output/sideinstaller-Moving-Increasingly-Interconnected-Technology-Co.-Ltd-com.oa11.plist"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 3v12"/><path d="M7 11l5 5 5-5"/><path d="M5 21h14"/></svg> Install</a>
</article>
<article class="cert-card" data-name="China-Telecom-Corporation-Limited" data-days="956">
<div class="cert-head">
<h3 class="cert-name">China-Telecom-Corporation-Limited</h3>
<span class="pill good">956 days left</span>
</div>
<p class="cert-meta">Expires 2029-02-23</p>
<a class="install-btn" href="itms-services://?action=download-manifest&url=https://raw.githubusercontent.com/FrizzleM/SideInstaller/main/output/sideinstaller-China-Telecom-Corporation-Limited.plist"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 3v12"/><path d="M7 11l5 5 5-5"/><path d="M5 21h14"/></svg> Install</a>
</article>
<article class="cert-card" data-name="XL" data-days="950">
<div class="cert-head">
<h3 class="cert-name">XL</h3>
<span class="pill good">950 days left</span>
</div>
<p class="cert-meta">Expires 2029-02-17</p>
<a class="install-btn" href="itms-services://?action=download-manifest&url=https://raw.githubusercontent.com/FrizzleM/SideInstaller/main/output/sideinstaller-XL.plist"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 3v12"/><path d="M7 11l5 5 5-5"/><path d="M5 21h14"/></svg> Install</a>
</article>
<article class="cert-card" data-name="National" data-days="927">
<div class="cert-head">
<h3 class="cert-name">National</h3>
<span class="pill good">927 days left</span>
</div>
<p class="cert-meta">Expires 2029-01-25</p>
<a class="install-btn" href="itms-services://?action=download-manifest&url=https://raw.githubusercontent.com/FrizzleM/SideInstaller/main/output/sideinstaller-National.plist"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 3v12"/><path d="M7 11l5 5 5-5"/><path d="M5 21h14"/></svg> Install</a>
</article>
<article class="cert-card" data-name="Rural" data-days="855">
<div class="cert-head">
<h3 class="cert-name">Rural</h3>
<span class="pill good">855 days left</span>
</div>
<p class="cert-meta">Expires 2028-11-14</p>
<a class="install-btn" href="itms-services://?action=download-manifest&url=https://raw.githubusercontent.com/FrizzleM/SideInstaller/main/output/sideinstaller-Rural.plist"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 3v12"/><path d="M7 11l5 5 5-5"/><path d="M5 21h14"/></svg> Install</a>
</article>
<article class="cert-card" data-name="ChinaAcademy" data-days="837">
<div class="cert-head">
<h3 class="cert-name">ChinaAcademy</h3>
<span class="pill good">837 days left</span>
</div>
<p class="cert-meta">Expires 2028-10-27</p>
<a class="install-btn" href="itms-services://?action=download-manifest&url=https://raw.githubusercontent.com/FrizzleM/SideInstaller/main/output/sideinstaller-ChinaAcademy.plist"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 3v12"/><path d="M7 11l5 5 5-5"/><path d="M5 21h14"/></svg> Install</a>
</article>
<article class="cert-card" data-name="ChinaPower" data-days="831">
<div class="cert-head">
<h3 class="cert-name">ChinaPower</h3>
<span class="pill good">831 days left</span>
</div>
<p class="cert-meta">Expires 2028-10-21</p>
<a class="install-btn" href="itms-services://?action=download-manifest&url=https://raw.githubusercontent.com/FrizzleM/SideInstaller/main/output/sideinstaller-ChinaPower.plist"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 3v12"/><path d="M7 11l5 5 5-5"/><path d="M5 21h14"/></svg> Install</a>
</article>
<article class="cert-card" data-name="Postal" data-days="758">
<div class="cert-head">
<h3 class="cert-name">Postal</h3>
<span class="pill good">758 days left</span>
</div>
<p class="cert-meta">Expires 2028-08-09</p>
<a class="install-btn" href="itms-services://?action=download-manifest&url=https://raw.githubusercontent.com/FrizzleM/SideInstaller/main/output/sideinstaller-Postal.plist"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 3v12"/><path d="M7 11l5 5 5-5"/><path d="M5 21h14"/></svg> Install</a>
</article>
<article class="cert-card" data-name="VIETNAM-AIRLINES-JSC-MOPLUS-LIDO-UAT" data-days="755">
<div class="cert-head">
<h3 class="cert-name">VIETNAM-AIRLINES-JSC-MOPLUS-LIDO-UAT</h3>
<span class="pill good">755 days left</span>
</div>
<p class="cert-meta">Expires 2028-08-06</p>
<a class="install-btn" href="itms-services://?action=download-manifest&url=https://raw.githubusercontent.com/FrizzleM/SideInstaller/main/output/sideinstaller-VIETNAM-AIRLINES-JSC-MOPLUS-LIDO-UAT.plist"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 3v12"/><path d="M7 11l5 5 5-5"/><path d="M5 21h14"/></svg> Install</a>
</article>
<article class="cert-card" data-name="Takeoff" data-days="692">
<div class="cert-head">
<h3 class="cert-name">Takeoff</h3>
<span class="pill good">692 days left</span>
</div>
<p class="cert-meta">Expires 2028-06-04</p>
<a class="install-btn" href="itms-services://?action=download-manifest&url=https://raw.githubusercontent.com/FrizzleM/SideInstaller/main/output/sideinstaller-Takeoff.plist"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 3v12"/><path d="M7 11l5 5 5-5"/><path d="M5 21h14"/></svg> Install</a>
</article>
<article class="cert-card" data-name="Election" data-days="654">
<div class="cert-head">
<h3 class="cert-name">Election</h3>
<span class="pill good">654 days left</span>
</div>
<p class="cert-meta">Expires 2028-04-27</p>
<a class="install-btn" href="itms-services://?action=download-manifest&url=https://raw.githubusercontent.com/FrizzleM/SideInstaller/main/output/sideinstaller-Election.plist"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 3v12"/><path d="M7 11l5 5 5-5"/><path d="M5 21h14"/></svg> Install</a>
</article>
<article class="cert-card" data-name="Vietnam" data-days="648">
<div class="cert-head">
<h3 class="cert-name">Vietnam</h3>
<span class="pill good">648 days left</span>
</div>
<p class="cert-meta">Expires 2028-04-21</p>
<a class="install-btn" href="itms-services://?action=download-manifest&url=https://raw.githubusercontent.com/FrizzleM/SideInstaller/main/output/sideinstaller-Vietnam.plist"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 3v12"/><path d="M7 11l5 5 5-5"/><path d="M5 21h14"/></svg> Install</a>
</article>
<article class="cert-card" data-name="Jiangsu-Simcere-Pharmaceutical-Co.-Ltd-workone" data-days="602">
<div class="cert-head">
<h3 class="cert-name">Jiangsu-Simcere-Pharmaceutical-Co.-Ltd-workone</h3>
<span class="pill good">602 days left</span>
</div>
<p class="cert-meta">Expires 2028-03-06</p>
<a class="install-btn" href="itms-services://?action=download-manifest&url=https://raw.githubusercontent.com/FrizzleM/SideInstaller/main/output/sideinstaller-Jiangsu-Simcere-Pharmaceutical-Co.-Ltd-workone.plist"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 3v12"/><path d="M7 11l5 5 5-5"/><path d="M5 21h14"/></svg> Install</a>
</article>
<article class="cert-card" data-name="Guangzhou-Huahan-Educational-Technology-Co.-Ltd." data-days="559">
<div class="cert-head">
<h3 class="cert-name">Guangzhou-Huahan-Educational-Technology-Co.-Ltd.</h3>
<span class="pill good">559 days left</span>
</div>
<p class="cert-meta">Expires 2028-01-23</p>
<a class="install-btn" href="itms-services://?action=download-manifest&url=https://raw.githubusercontent.com/FrizzleM/SideInstaller/main/output/sideinstaller-Guangzhou-Huahan-Educational-Technology-Co.-Ltd..plist"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 3v12"/><path d="M7 11l5 5 5-5"/><path d="M5 21h14"/></svg> Install</a>
</article>
<article class="cert-card" data-name="VIETNAM-JOINT-STOCK-COMMERCIAL-BANK-FOR-INDUSTRY-AND-TRADE" data-days="327">
<div class="cert-head">
<h3 class="cert-name">VIETNAM-JOINT-STOCK-COMMERCIAL-BANK-FOR-INDUSTRY-AND-TRADE</h3>
<span class="pill good">327 days left</span>
</div>
<p class="cert-meta">Expires 2027-06-05</p>
<a class="install-btn" href="itms-services://?action=download-manifest&url=https://raw.githubusercontent.com/FrizzleM/SideInstaller/main/output/sideinstaller-VIETNAM-JOINT-STOCK-COMMERCIAL-BANK-FOR-INDUSTRY-AND-TRADE.plist"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 3v12"/><path d="M7 11l5 5 5-5"/><path d="M5 21h14"/></svg> Install</a>
</article>
<article class="cert-card" data-name="Wuling" data-days="321">
<div class="cert-head">
<h3 class="cert-name">Wuling</h3>
<span class="pill good">321 days left</span>
</div>
<p class="cert-meta">Expires 2027-05-30</p>
<a class="install-btn" href="itms-services://?action=download-manifest&url=https://raw.githubusercontent.com/FrizzleM/SideInstaller/main/output/sideinstaller-Wuling.plist"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 3v12"/><path d="M7 11l5 5 5-5"/><path d="M5 21h14"/></svg> Install</a>
</article>
<article class="cert-card" data-name="Tianjin-University-of-Commerce" data-days="227">
<div class="cert-head">
<h3 class="cert-name">Tianjin-University-of-Commerce</h3>
<span class="pill good">227 days left</span>
</div>
<p class="cert-meta">Expires 2027-02-25</p>
<a class="install-btn" href="itms-services://?action=download-manifest&url=https://raw.githubusercontent.com/FrizzleM/SideInstaller/main/output/sideinstaller-Tianjin-University-of-Commerce.plist"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 3v12"/><path d="M7 11l5 5 5-5"/><path d="M5 21h14"/></svg> Install</a>
</article>
<article class="cert-card" data-name="Forever" data-days="207">
<div class="cert-head">
<h3 class="cert-name">Forever</h3>
<span class="pill good">207 days left</span>
</div>
<p class="cert-meta">Expires 2027-02-05</p>
<a class="install-btn" href="itms-services://?action=download-manifest&url=https://raw.githubusercontent.com/FrizzleM/SideInstaller/main/output/sideinstaller-Forever.plist"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 3v12"/><path d="M7 11l5 5 5-5"/><path d="M5 21h14"/></svg> Install</a>
</article>
<article class="cert-card" data-name="BOC" data-days="116">
<div class="cert-head">
<h3 class="cert-name">BOC</h3>
<span class="pill good">116 days left</span>
</div>
<p class="cert-meta">Expires 2026-11-06</p>
<a class="install-btn" href="itms-services://?action=download-manifest&url=https://raw.githubusercontent.com/FrizzleM/SideInstaller/main/output/sideinstaller-BOC.plist"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 3v12"/><path d="M7 11l5 5 5-5"/><path d="M5 21h14"/></svg> Install</a>
</article>
<article class="cert-card" data-name="China-National-Heavy-Duty-Truck-Group-Co.-Ltd." data-days="108">
<div class="cert-head">
<h3 class="cert-name">China-National-Heavy-Duty-Truck-Group-Co.-Ltd.</h3>
<span class="pill good">108 days left</span>
</div>
<p class="cert-meta">Expires 2026-10-29</p>
<a class="install-btn" href="itms-services://?action=download-manifest&url=https://raw.githubusercontent.com/FrizzleM/SideInstaller/main/output/sideinstaller-China-National-Heavy-Duty-Truck-Group-Co.-Ltd..plist"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 3v12"/><path d="M7 11l5 5 5-5"/><path d="M5 21h14"/></svg> Install</a>
</article>
<article class="cert-card" data-name="Aramco" data-days="73">
<div class="cert-head">
<h3 class="cert-name">Aramco</h3>
<span class="pill good">73 days left</span>
</div>
<p class="cert-meta">Expires 2026-09-24</p>
<a class="install-btn" href="itms-services://?action=download-manifest&url=https://raw.githubusercontent.com/FrizzleM/SideInstaller/main/output/sideinstaller-Aramco.plist"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 3v12"/><path d="M7 11l5 5 5-5"/><path d="M5 21h14"/></svg> Install</a>
</article>
<article class="cert-card" data-name="Beijing" data-days="40">
<div class="cert-head">
<h3 class="cert-name">Beijing</h3>
<span class="pill good">40 days left</span>
</div>
<p class="cert-meta">Expires 2026-08-22</p>
<a class="install-btn" href="itms-services://?action=download-manifest&url=https://raw.githubusercontent.com/FrizzleM/SideInstaller/main/output/sideinstaller-Beijing.plist"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 3v12"/><path d="M7 11l5 5 5-5"/><path d="M5 21h14"/></svg> Install</a>
</article>
</main>
<p id="empty" class="empty">No certificates match your search.</p>
<details class="howto">
<summary>How to install</summary>
<div class="howto-body">
<ol>
<li>Open this page <b>on your iPhone or iPad in Safari</b>.</li>
<li>Pick any certificate above and tap <b>Install</b>, then confirm the prompt.</li>
<li>Wait for the app to finish installing on your Home Screen.</li>
<li>Go to <code>Settings → General → VPN & Device Management</code>, tap the developer profile, and <b>Trust</b> it.</li>
<li>Launch the app. If one certificate is revoked or won't open, just install with another.</li>
</ol>
</div>
</details>
</section>
<section class="step" id="completion">
<div class="step-head">
<span class="step-num">3</span>
<div>
<h2 class="step-title">Completion</h2>
<p class="step-sub">You're all set.</p>
</div>
</div>
<div class="step-card">
<p>That's it — open <b>SideInstaller</b> from your Home Screen and use it to install <b>SideStore</b> (or SideStore + LiveContainer), straight from your device. No PC needed.</p>
<div class="callout">
<b>Once SideStore is installed, the DNS profile is no longer needed.</b> Remove it in <code>Settings → General → VPN & Device Management</code> → <b>SideInstaller</b> → <b>Remove Profile</b> — or keep it and just stop using its DNS by switching <code>DNS</code> back to <b>Automatic</b> in the same menu.
</div>
</div>
</section>
<footer class="footer">
Built automatically · signed with 22 certificate(s)
<br>Last updated: 14 Jul 2026, 01:58 CET
<br><a href="terms.html">Terms of Service</a>
</footer>
</div>
<div class="modal" id="tutorialModal" role="dialog" aria-modal="true" aria-labelledby="tutorialTitle" hidden>
<div class="modal-backdrop" data-close></div>
<div class="modal-card">
<div class="modal-head">
<h3 class="modal-title" id="tutorialTitle">Tutorials</h3>
<button type="button" class="modal-close" data-close aria-label="Close">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.4" stroke-linecap="round" aria-hidden="true"><path d="M6 6l12 12M18 6L6 18"/></svg>
</button>
</div>
<div class="modal-links">
<a class="modal-link" href="https://youtu.be/OyeYTSEheQw?is=j6FyM9iURyrMwcXy" target="_blank" rel="noopener">
<span class="modal-link-icon"><svg viewBox="0 0 24 24" fill="currentColor" aria-hidden="true"><path d="M23.498 6.186a3.016 3.016 0 0 0-2.122-2.136C19.505 3.545 12 3.545 12 3.545s-7.505 0-9.377.505A3.017 3.017 0 0 0 .502 6.186C0 8.07 0 12 0 12s0 3.93.502 5.814a3.016 3.016 0 0 0 2.122 2.136c1.871.505 9.376.505 9.376.505s7.505 0 9.377-.505a3.015 3.015 0 0 0 2.122-2.136C24 15.93 24 12 24 12s0-3.93-.502-5.814zM9.545 15.568V8.432L15.818 12l-6.273 3.568z"/></svg></span>
<span class="modal-link-text"><b>Install SideStore</b></span>
<svg class="modal-link-arrow" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><path d="M9 6l6 6-6 6"/></svg>
</a>
<a class="modal-link" href="https://youtu.be/WCYkxfRHapg" target="_blank" rel="noopener">
<span class="modal-link-icon"><svg viewBox="0 0 24 24" fill="currentColor" aria-hidden="true"><path d="M23.498 6.186a3.016 3.016 0 0 0-2.122-2.136C19.505 3.545 12 3.545 12 3.545s-7.505 0-9.377.505A3.017 3.017 0 0 0 .502 6.186C0 8.07 0 12 0 12s0 3.93.502 5.814a3.016 3.016 0 0 0 2.122 2.136c1.871.505 9.376.505 9.376.505s7.505 0 9.377-.505a3.015 3.015 0 0 0 2.122-2.136C24 15.93 24 12 24 12s0-3.93-.502-5.814zM9.545 15.568V8.432L15.818 12l-6.273 3.568z"/></svg></span>
<span class="modal-link-text"><b>Enable JIT</b></span>
<svg class="modal-link-arrow" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><path d="M9 6l6 6-6 6"/></svg>
</a>
</div>
</div>
</div>
<script>
(function(){
var grid=document.getElementById('grid');
var q=document.getElementById('q');
var sortSel=document.getElementById('sort');
var empty=document.getElementById('empty');
var cards=[].slice.call(grid.querySelectorAll('.cert-card'));
function days(c){ var d=parseInt(c.getAttribute('data-days'),10); return isNaN(d)?-1e9:d; }
function name(c){ return (c.getAttribute('data-name')||'').toLowerCase(); }
function apply(){
var term=(q.value||'').trim().toLowerCase();
var mode=sortSel.value;
var sorted=cards.slice().sort(function(a,b){
if(mode==='name') return name(a).localeCompare(name(b));
if(mode==='days-asc') return days(a)-days(b);
return days(b)-days(a);
});
var visible=0;
sorted.forEach(function(c){
var show=!term || name(c).indexOf(term)>-1;
c.style.display=show?'':'none';
if(show) visible++;
grid.appendChild(c);
});
empty.classList.toggle('show', visible===0);
}
q.addEventListener('input',apply);
sortSel.addEventListener('change',apply);
apply();
/* TOS gate: installs stay dimmed and inert until the box is ticked.
Acceptance is remembered per device. */
var tos=document.getElementById('tosCheck');
var TOS_KEY='si-tos-accepted';
function tosLocked(){ return !tos.checked; }
function applyTos(){
grid.classList.toggle('locked', tosLocked());
grid.setAttribute('aria-disabled', tosLocked()?'true':'false');
if('inert' in grid) grid.inert=tosLocked();
try{
if(tos.checked) localStorage.setItem(TOS_KEY,'1');
else localStorage.removeItem(TOS_KEY);
}catch(e){}
}
try{ if(localStorage.getItem(TOS_KEY)==='1') tos.checked=true; }catch(e){}
tos.addEventListener('change',applyTos);
/* Belt and braces for browsers without inert: swallow activations
(including keyboard Enter) while locked. */
grid.addEventListener('click',function(e){
if(tosLocked()){ e.preventDefault(); e.stopPropagation(); }
},true);
applyTos();
/* Tutorial popup */
var tutBtn=document.getElementById('tutorialBtn');
var tutModal=document.getElementById('tutorialModal');
function openTut(){
tutModal.hidden=false;
document.body.style.overflow='hidden';
var first=tutModal.querySelector('.modal-link');
if(first) first.focus();
}
function closeTut(){
tutModal.hidden=true;
document.body.style.overflow='';
tutBtn.focus();
}
tutBtn.addEventListener('click',openTut);
tutModal.addEventListener('click',function(e){
if(e.target.closest && e.target.closest('[data-close]')) closeTut();
});
document.addEventListener('keydown',function(e){
if(e.key==='Escape' && !tutModal.hidden) closeTut();
});
})();
</script>
</body>
</html>