-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
settings.html
1246 lines (932 loc) · 65.7 KB
/
settings.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">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TransSocial | Settings</title>
<link rel="stylesheet" href="/assets/css/mainSite.css">
<link rel="shortcut icon" href="/assets/imgs/favicon.png" type="image/png">
<link rel="manifest" href="/manifest.json">
<script src="https://kit.fontawesome.com/be7c331826.js" crossorigin="anonymous"></script>
<script src="/assets/js/twemoji.js" crossorigin="anonymous"></script>
<script src="https://js.stripe.com/v3/"></script>
<meta name="robots" content="nofollow, noai, noimageai">
<meta name="og:type" content="website">
<meta name="og:url" content="https://transs.social/">
<meta name="og:title" content="TransSocial">
<meta name="og:site_name" content="transs.social">
<meta name="og:description" content="TransSocial - a safe place for everyone.">
<meta name="description" content="TransSocial - a safe place for everyone.">
<meta property="og:image" content="https://transs.social/assets/imgs/favicon.png">
<meta name="theme-color" content="#ff869a">
</head>
<body onload="loadEverything() + signedOutCheck()">
<!-- Overlay when attempting to link -->
<div id="linkingPatreonAccount" style="display: none;"></div>
<p id="linkingUpdater" style="display: none;">Linking Patreon account... Please wait.</p>
<!-- This loads the website -->
<div class="loader" id="loader">
<p style="position: fixed; left: 0; top: 0; color: var(--text-semi-transparent); transform: translateY(0px);">© Katniny Studios 2024</p>
<p style="position: fixed; left: 0; top: 17px; color: var(--text-semi-transparent); transform: translateY(0px);">Katniny Online Services</p>
<p style="position: fixed; left: 0; top: 35px; color: var(--text-semi-transparent); transform: translateY(0px);" class="loaderVersion">TransSocial v</p>
<img src="/assets/imgs/favicon.png" alt="TransSocial logo" draggable="false" />
<p><strong>Did you know?</strong></p>
<p id="loaderQuote" style="position: absolute; margin-top: 40px;">
<!-- If someone tries to use TransSocial with JavaScript -->
<noscript>
<div class="noJavaScript">
TransSocial requires JavaScript to run
</div>
</noscript>
</p>
<div class="transSocialLoadLong" id="transSocialLoadLong">
<p>TransSocial not loading?</p>
<a href="https://twitter.com/transs_ocial" target="_blank" style="position: absolute; top: 100px; left: 30px; color: var(--main-color); text-decoration: none;"><i class="fa-brands fa-twitter" style="color: var(--main-color); margin-right: 3px;"></i> Let us know</a>
</div>
</div>
<!-- Header -->
<!-- Header -->
<div class="header" id="header">
<div class="left">
<button id="hamburgerMenu"><i class="fa-solid fa-bars"></i></button> <a href="/home"><img class="headerLogo" id="transsocialHeaderLogo" src="/assets/imgs/All_transparent.png" draggable="false" /></a>
</div>
<div class="center">
<input id="searchBar" placeholder="Search TransSocial" />
</div>
<div class="right">
<a href="/download"><button style="margin-right: 20px; transform: translateY(-23px);" id="headerGetApp">Get App</button></a> <a href="/notifications"><i class="fa-solid fa-bell fa-lg"></i></a> <a href="/achievements"><i class="fa-solid fa-trophy fa-lg" style="margin-right: 0px;"></i></a> <img src="" alt="Your profile picture" draggable="false" id="userPfp-header" onclick="accountManager()" />
</div>
<div class="accountManager" id="accountManager" style="display: none;">
<h3 id="greetingManager">Hello, {user}</h3>
<a href="/settings"><button><i class="fa-solid fa-gear"></i> Settings</button></a>
<a href="/achievements"><button><i class="fa-solid fa-award"></i> Achievements</button></a>
</div>
</div>
<!-- Bottom Nav (mobile) -->
<!--<div class="mobileBottomNav" id="mobileBottomNav">
<div class="nav">
<a href="/home" style="margin-left: 20px;"><i class="fa-solid fa-house fa-xl"></i></a> <a href="/notifications"><i class="fa-solid fa-bell fa-xl"></i></a> <a href="/settings" class="active"><i class="fa-solid fa-gear fa-xl"></i></a> <a href="javascript:void();" onclick="createNotePopup()"><i class="fa-solid fa-pen-to-square fa-xl"></i></a>
</div>
</div>-->
<!-- Sidebar -->
<header class="sidebar" id="sidebar">
<!-- Navigation Buttons -->
<a href="/home"><button style="margin-top: 15px;"><i class="fa-solid fa-house"></i> Home</button></a>
<a href="/notifications" id="notificationsSidebar"><button><i class="fa-solid fa-bell"></i> Notifications</button></a> <a href="/notifications"><p id="notificationsCount">0</p></a>
<a href="/search"><button><i class="fa-solid fa-magnifying-glass"></i> Explore</button></a>
<a href="/messages" id="messagesSidebar"><button><i class="fa-solid fa-envelope"></i> Messages (0)</button></a>
<a href="/settings?tab=subscription" id="enchantedSidebar"><button><i class="fa-solid fa-heart"></i> Get Katniny+</button></a>
<a href="/updates"><button id="updatesBtn"><i class="fa-solid fa-wrench"></i> Updates</button></a>
<a href="/u" id="linkToAcc"><button><i class="fa-solid fa-user"></i> Your Profile</button></a>
<a href="javascript:void(0);"><button id="showMoreContent"><i class="fa-solid fa-ellipsis"></i> More</button></a>
<button onclick="createNotePopup()" class="createNote-sidebar" id="createNote-sidebar"><i class="fa-solid fa-pen-to-square"></i> Create</button>
<div id="moreContent" class="moreContent" style="display: none;">
<a href="/settings" id="settingsSidebar"><button class="settings active"><i class="fa-solid fa-gear"></i> Settings</button></a>
<a href="/contributors"><button><i class="fa-solid fa-face-smile-beam"></i> Contributors</button></a>
<a href="/achievements" id="achievementsSidebar"><button><i class="fa-solid fa-award"></i> Achievements</button></a>
<a href="/favorites" id="favoritesSidebar"><button><i class="fa-solid fa-bookmark"></i> Favorites</button></a>
</div>
<br />
<br />
<br />
<br />
<div class="sidebarPolicies">
<a href="/policies/terms">Terms of Service</a>, <a href="/policies/privacy">Privacy Policy</a>, <a href="/policies/child-safety">Child Safety</a>, <a href="/policies/cookies">Cookies</a>, <a href="/policies/copyright">Copyright</a>, <a href="/policies/guidelines">Community Guidelines</a>
</div>
<!-- Social Icons & Links -->
<div class="bottom">
<!-- Socials -->
<a href="https://discord.gg/SmhATjRxvc" target="_blank"><i class="fa-brands fa-discord fa-lg"></i></a>
<a href="https://twitter.com/transs_ocial" target="_blank"><i class="fa-brands fa-twitter fa-lg"></i></a>
<a href="https://tiktok.com/@transs_ocial" target="_blank"><i class="fa-brands fa-tiktok fa-lg"></i></a>
<a href="https://github.com/katniny/transsocial" target="_blank"><i class="fa-brands fa-github fa-lg"></i></a>
<!-- Profile -->
<div class="profileContainer" >
<div class="profile" id="profile" style="display: none;">
<a href="/settings"><button><i class="fa-solid fa-gear"></i> Settings</button></a>
<button onclick="signOut()"><i class="fa-solid fa-arrow-right-from-bracket"></i> Sign Out</button>
</div>
<strong><p id="notSignedIn">Create an account to explore!</p></strong>
<img class="userPfp-sidebar" id="userPfp-sidebar" src="" draggable="false" /><p id="displayName-sidebar">Display Name</p>
<p id="username-pronouns-sidebar">@username</p>
</div>
</div>
</header>
<!-- Note successfully sent -->
<div id="successfullySent" style="display: none;"><p>Note successfully sent!</p></div>
<!-- New Note Alert -->
<!--<div class="notesAlert" id="notesAlert">
<p>New Notes</p>
</div>-->
<!-- Notes -->
<div class="notes" id="notes">
<div class="newNotesAdded" id="newNotesAdded">
<!-- Notes go here. This content is user-generated, no default HTML should be here. -->
</div>
<div class="noteFilter">
<!--<p class="version-notice">TransSocial is currently in the InDev stage (version 0.0.1). A lot of features are missing and will be added with updates. <a href="/indev">Learn more</a>.</p>-->
<!--<button class="active" style="border-right: 1px solid gray;">All Notes</button><button>Following</button>-->
<div class="blogStyle" style="margin: 15px;">
<h1>Settings</h1>
<!-- Tabs -->
<div class="settingsTabs"><a href="javascript:void(0);" id="profileTab" onclick="profileTab()" class="active">Profile</a> <a href="javascript:void(1);" id="accountTab" onclick="accountTab()">Account</a> <a href="javascript:void(2);" id="personalizationTab" onclick="personalizationTab()">Personalization</a> <a href="javascript:void(3);" id="subscriptionTab" onclick="subscriptionTab()">Subscription</a> <a href="javascript:void(4);" id="environmentTab" onclick="environmentTab()">Environment</a></div>
<!-- Tab #1 (Profile) -->
<br />
<div id="profileTab-display" style="padding-bottom: 0px;">
<h2>Profile Information</h2>
<p style="color: var(--text-semi-transparent); font-size: 14.5px;">How you'll appear across TransSocial and other Katniny products.</p>
<br />
<p>Profile Picture & Banner</p>
<img src="/assets/imgs/Transparency.png" draggable="false" alt="Your Katniny profile banner" id="banner_settings" style="width: 100%; height: 75px; background: var(--profile-picture-bg);" />
<input type="file" id="fileInput_banner" accept="image/png, image/jpeg, image/webp, image/gif" style="display: none;" />
<p id="errorUploadingBanner" style="color: var(--error-text); display: none;"></p>
<!--<p>Profile Picture</p>-->
<img src="" draggable="false" alt="Your Katniny profile picture" id="profilePicture_settings" class="profilePicture" /> <button onclick="changePfp()" style="transform: translateY(-55px); margin-left: 5px;" id="changePfp">Change Picture</button> <button onclick="changeBanner()" style="transform: translateY(-55px); margin-left: 5px;" id="changeBanner">Change Banner</button>
<input type="file" id="fileInput" accept="image/png, image/jpeg, image/webp, image/gif" style="display: none;" />
<p id="errorUploadingPfp" style="color: var(--error-text); display: none;"></p>
<div style="transform: translateY(-20px);">
<p>Display Name</p>
<input type="text" placeholder="Enter a fun display name!" style="font-size: 15px; margin-top: 3px;" id="displayName-text" class="displayName-text" />
<p id="errorUsingDisplay" style="color: var(--error-text); font-size: 14px; display: none;"></p>
<p id="characterLimit_display" style="color: var(--text-semi-transparent); font-size: 14px; margin-top: 1px;">0/25</p>
<button onclick="setDisplayName()" id="saveDisplay" style="display: none;">Save</button>
<br />
<p>Username</p>
<input type="text" placeholder="Enter a unique username!" style="font-size: 15px; margin-top: 3px;" id="username-text" oninput="usernameCharacters()" class="username-text" />
<p id="characterLimit_username" style="color: var(--text-semi-transparent); font-size: 14px; margin-top: 1px;">0/20</p>
<p id="errorTakingUsername" style="color: var(--error-text); font-size: 14px; display: none;"></p>
<p id="usernameNotice" style="color: var(--error-text); font-size: 14px; display: none;">Changing your username will immediately make your old one available to take!</p>
<button onclick="setUsername()" id="saveUsername" style="display: none;">Save</button>
<br />
<p>Pronouns</p>
<input type="text" placeholder="What do you preferred to be called? (Field can be empty)" style="font-size: 15px; margin-top: 3px;" id="pronouns-text" class="pronouns-text" />
<p id="characterLimit_pronouns" style="color: var(--text-semi-transparent); font-size: 14px; margin-top: 1px;">0/15</p>
<button onclick="setPronouns()" id="savePronouns" style="display: none;">Save</button>
<br />
<p>Bio</p>
<textarea id="bioText" class="bioText borderBlack" style="font-size: 14px;"></textarea>
<p id="characterLimit_bio" style="color: var(--text-semi-transparent);">0/500</p>
<button onclick="setBio()" id="saveBio" style="display: none;">Save</button>
</div>
</div>
</div>
<!-- Tab #2 (Account) -->
<div id="profileTab-account" style="display: none;">
<h2>Personal Info</h2>
<p style="color: var(--text-semi-transparent); font-size: 14.5px;">Your personal information for Katniny Services.</p>
<br />
<p>Email Address</p>
<input type="text" placeholder="Enter a new email address" style="font-size: 15px; margin-top: 3px;" id="email-address" class="email-address" />
<p id="errorUsingEmail" style="color: var(--error-text); font-size: 14px; display: none;"></p>
<button onclick="setEmail()" id="saveEmail" style="display: none;" class="saveEmail">Save</button>
<br />
<br />
<p>Password</p>
<p id="passwordResetSent" style="color: var(--success-color); font-size: 14px; display: none;"></p>
<button onclick="sendPasswordResetEmail()" id="sendPasswordReset">Send Password Reset Email</button>
<br />
<br />
<p>Language Preference</p>
<select id="languagePreference">
<option value="English (United States)">English (United States)</option>
<!--<option value="Lolcat">Lolcat</option>-->
</select> <i class="fa-solid fa-caret-down"></i>
<br />
<br />
<p>Data & Privacy</p>
<button onclick="seePersonalData()">See or Download My Data</button>
<!--<br />
<br />
Re-add at some point in time
<p>Verification</p>
<button onclick="verificationRequest()">Get Verified</button>
-->
<br />
<br />
<p style="color: var(--error-text)">Delete Account</p>
<button onclick="document.getElementById('deleteAccountModal').showModal()" class="dangerButton">Delete Account</button>
</div>
<!-- Tab #3 (Personalization) -->
<div id="profileTab-personalization" style="display: none;">
<h2>Personalization</h2>
<p style="color: var(--text-semi-transparent); font-size: 14.5px;">Personalize your TransSocial experience. Transfers between web, desktop and mobile.</p>
<br />
<p>Theme</p>
<button onclick="selectTheme()">Select Theme</button>
<a href="/create_theme"><button>Create Theme</button></a>
<a href="/userstudio"><button>Get Themes</button></a>
<br />
<br />
<p>Show Mature Content (NSFW Content)</p>
<p id="updatedMatureContentPref" style="display: none; font-size: 14px; color: var(--success-color);">Updated preference to "" successfully!</p>
<button onclick="hideMatureContent()">Hide</button> <button onclick="blurMatureContent()">Blur</button> <button onclick="showMatureContent()">Show</button>
<br />
<br />
<p>Show Sensitive Content</p>
<p id="updatedSensitiveContentPref" style="display: none; font-size: 14px; color: var(--success-color);">Updated preference to "" successfully!</p>
<button onclick="hideSensitiveContent()">Hide</button> <button onclick="blurSensitiveContent()">Blur</button> <button onclick="showSensitiveContent()">Show</button>
<br />
<br />
<p>Show Political Content</p>
<p style="font-size: 14px; color: var(--text-semi-transparent);">TransSocial does not define what considers a note "political". <a href="https://blog.katniny.com/blog/transsocial-political-filter-notice" target="_blank" style="color: var(--main-color)">See notice</a>.</p>
<p id="updatedPoliticalContentPref" style="display: none; font-size: 14px; color: var(--success-color);">Updated preference to "" successfully!</p>
<button onclick="hidePoliticalContent()">Hide</button> <button onclick="blurPoliticalContent()">Blur</button> <button onclick="showPoliticalContent()">Show</button>
<br />
<br />
<p>Show Pride Logo During Pride Month</p>
<p id="updatedPrideFlagContentPref" style="display: none; font-size: 14px; color: var(--success-color);">Updated preference to "" successful!</p>
<button onclick="hidePrideFlag()">Use Theme Logo</button> <button onclick="showPrideFlag()">Use Pride Logo</button>
<br />
<br />
<p>Font Scale</p>
<p id="updatedFontScaleContentPref" style="display: none; font-size: 14px; color: var(--success-color);">Updated preference to "" successful!</p>
<p style="font-size: 14px; color: var(--text-semi-transparent);">Please note that "Normal" is recommended.</p>
<button onclick="normalFontScale()">Normal</button> <button onclick="largeFontScale()">Large</button>
<br />
<br />
<p>Autoplay Videos</p>
<p id="updatedAutoplayContentPref" style="display: none; font-size: 14px; color: var(--success-color);">Updated preference to "" successful!</p>
<button onclick="doAutoplay()">Enable Autoplay</button> <button onclick="doNotAutoplay()">Disable Autoplay</button>
<br />
<br />
<p>Experiments</p>
<p style="font-size: 14px; color: var(--error-text);">Experiments are work-in-progress features and are likely buggy. Experiments will be removed in TransSocial Beta.</p>
<button onclick="showExperiments()">See Experiments</button>
</div>
<!-- Tab #4 (Subscription) -->
<div id="profileTab-subscription" style="display: none;">
<h2>Subscription</h2>
<p style="color: var(--text-semi-transparent); font-size: 14.5px;">Help us keep the lights on! We now offer subscription benefits! Note that payment is powered and securely processed by Stripe, and your payment details are never saved in TransSocial's database. We appreciate your support! :D</p>
<br />
<!-- Fetching -->
<div id="fetchingSubscriptionStatus">
<p><i class="fa-solid fa-circle-notch fa-spin"></i> We're fetching your subscription data...</p>
</div>
<!-- Inactive -->
<div id="subscribe" style="display: none;">
<h3>Get Katniny+ for $4.99USD/month!</h3>
<p style="font-size: 13px; color: var(--text-semi-transparent);">+plus applicable tax. Price is in United States Dollars and may differ depending on your location.</p>
<br />
<form id="subscription-form">
<div id="card-element"></div>
<div id="card-errors" role="alert" style="color: var(--error-text); font-size: 14px;"></div>
<br />
<button id="submitSubBtn">Subscribe</button>
</form>
<br />
<h3>Why subscribe?</h3>
<p>Get exclusive benefits such as,</p>
<ul>
<li>Upload files up to 35MB</li>
<!--<li>Set a custom background on your profile</li> (TO:DO)-->
<li>Set a .gif file as your profile picture</li>
<li>Get a special badge on your profile!</li>
</ul>
<p>and more benefits coming soon!</p>
</div>
<!-- Active -->
<div id="thanksForSubscribing" style="display: none;">
<h3>Thank you for subscribing!</h3>
<p style="font-size: 14px; color: var(--text-semi-transparent);">Thank you for subscribing to Katniny+ and helping TransSocial stay afloat! Enjoy your benefits!</p>
<p style="font-size: 14px; color: var(--error-text); display: none;" id="overdueBill">Your subscription is overdue and you'll lose your benefits soon.</p>
<ul>
<li>Upload files up to 35MB</li>
<!--<li>Set a custom background on your profile</li> (TO:DO)-->
<li>Set a .gif file as your profile picture</li>
<li>Get a special badge on your profile!</li>
</ul>
<p>and more benefits coming soon!</p>
<br />
<p id="subMemberSince">You've been subscribed since MM/DD/YY</p>
<p id="subRenewalDay" style="font-size: smaller; color: var(--text-semi-transparent);">Your subscription gets renewed on MM/DD/YY</p>
<br />
<button onclick="cancelSubscription()">Cancel Subscription</button>
</div>
</div>
<div id="profileTab-environment" style="display: none;">
<h2>Environment</h2>
<p style="color: var(--text-semi-transparent); font-size: 14.5px;">Info about the environment TransSocial is running in. Please note that this is client-side and not stored anywhere, and is purely to improve your experience. Learn more in our <a href="/policies/privacy" style="color: var(--main-color)">privacy policy</a>. There will also be information about each thing does below it.</p>
<br />
<p style="color: var(--text-semi-transparent);">Browser: <span id="userBrowser">{browser}</span></p>
<p style="font-size: 14px; color: var(--text-semi-transparent);">This just ensures you are using a supported browser, not an outdated browser such as Internet Explorer.</p>
<br />
<p style="color: var(--text-semi-transparent);">Browser Version: <span id="userBrowserVer">{version}</span></p>
<p style="font-size: 14px; color: var(--text-semi-transparent);">This ensures that your browser can use everything that TransSocial needs, such as the dialog element.</p>
<br />
<p style="color: var(--text-semi-transparent);">OS: <span id="userOs">{os}</span></p>
<p style="font-size: 14px; color: var(--text-semi-transparent);">Checks what version of the TransSocial app you need, if supported (Has special functionality on apps - ensures that you're on a compatible OS).</p>
</div>
</div>
<!-- Please Donate -->
<!--<div class="pleaseDonate" id="pleaseDonate">
<p>Hey, please don't skip this read. We need your support to keep TransSocial thriving. <a href="https://patreon.com/katniny" target="_blank">My Patreon</a> is the heartbeat of TransSocial, and right now, TransSocial is running on passion but could use some funds (aka funds). Join the Patreon for perks, behind the scenes content, and most importantly - helping TransSocial. Let's make TransSocial better together - your contribution makes a huge difference!</p>
<a href="https://patreon.com/katniny" target="_blank"><button>Help TransSocial</button></a>
<button onclick="closeHelpPrompt()">Maybe Later</button>
</div>-->
</div>
<!-- TransSocial Accounts -->
<div class="transsocialAccounts">
<h3>TransSocial Accounts</h3>
<p>Follow accounts associated with TransSocial.</p>
<div class="katniny">
<!-- Me :3 -->
<div class="katniny">
<img class="recommendAcc-pfp" src="" id="katninyPfp" draggable="false" /> <p id="katninyDisplay"></p>
<br /> <a href="/u" id="followBtn-1"><button class="followBtn">Follow</button></a>
<p id="katninyUser-pronouns"></p>
</div>
<br />
<!-- TransSocial -->
<div class="transsocial">
<img class="recommendAcc-pfp" src="" id="transsocialPfp" draggable="false" /> <p id="transsocialDisplay"></p>
<br /> <a href="/u" id="followBtn-2"><button class="followBtn">Follow</button></a>
<p id="transsocialUser-pronouns"></p>
</div>
<br />
<!-- Katniny Studios -->
<div class="katninystudios">
<img class="recommendAcc-pfp" src="" id="katninystudiosPfp" draggable="false" /> <p id="katninystudiosDisplay"></p>
<br /> <a href="/u" id="followBtn-3"><button class="followBtn">Follow</button></a>
<p id="katninystudiosUser-pronouns"></p>
</div>
</div>
</div>
<div class="policies">
<a href="/policies/terms">Terms of Service</a>, <a href="/policies/privacy">Privacy Policy</a>, <a href="/policies/child-safety">Child Safety</a>, <a href="/policies/cookies">Cookies</a>, <a href="/policies/copyright">Copyright</a>, <a href="/policies/guidelines">Community Guidelines</a>
</div>
<div id="notSignedIn-banner">
<p>Join the fun on TransSocial!</p>
<a href="/auth/login"><button>Login</button></a>
<a href="/auth/register"><button>Create an account</button></a>
</div>
<!-- Achievement Unlock -->
<div id="achievementUnlock" class="achievementUnlock" style="display: none;">
<div id="achievementIcon"><i class="fa-solid fa-pencil"></i></div> <p id="achievementName">Achievement Name</p>
</div>
<dialog id="showAchievementUnlock">
<h2 id="titleAndIcon">title and stuff</h2>
<p id="unlockReason">because you did</p>
<p id="unlockDate">m/d/y (the objectively correct way)</p>
<button onclick="document.getElementById('showAchievementUnlock').close();">Okay!</button>
</dialog>
<!-- Achievement Unlock -->
<div id="achievementUnlock" class="achievementUnlock" style="display: none;">
<div id="achievementIcon"><i class="fa-solid fa-pencil"></i></div> <p id="achievementName">Achievement Name</p>
</div>
<dialog id="showAchievementUnlock">
<h2 id="titleAndIcon">title and stuff</h2>
<p id="unlockReason">because you did</p>
<p id="unlockDate">m/d/y (the objectively correct way)</p>
<button onclick="document.getElementById('showAchievementUnlock').close();">Okay!</button>
</dialog>
<!-- Modals -->
<dialog id="themeSelect">
<h2>Pick a theme type</h2>
<p style="color: var(--text-semi-transparent);">Use standard TransSocial themes or try themes created by fellow users!</p>
<br />
<button style="width: 100%; font-size: 15px;" onclick="transsocialThemes()">
Standard TransSocial Themes<br/>
<span style="color: var(--text-semi-transparent); font-size: 14px;">All the themes created by TransSocial.</span>
</button>
<button style="width: 100%; font-size: 15px;" onclick="userThemes()">
Custom Themes<br/>
<span style="color: var(--text-semi-transparent); font-size: 14px;">Themes created by fellow TransSocial users!</span>
</button>
<p style="margin-top: 5px;">Want to make your own custom theme? <a href="/create_theme" style="color: var(--main-color);">Now you can!</a></p>
<br />
<button onclick="document.getElementById('themeSelect').close();">Nevermind</button>
</dialog>
<dialog id="experimentSelect">
<h2>Try an experiment!</h2>
<p style="color: var(--error-text);">Experiments are work-in-progress features and are likely buggy.</p>
<button onclick="document.getElementById('experimentSelect').close();">Nevermind</button>
<br />
<br />
<!-- Direct Messaging -->
<div class="themeContainer" onclick="toggleDMExperimentDetails()">
<img src="/assets/imgs/dm_experiment.png" alt="Two users talking to each other through Direct Messages" class="themeImage" />
<div class="themeText">Direct Messages</div>
</div>
<div id="dm_details" style="display: none;">
<p style="color: var(--text-semi-transparent);">Message other users on TransSocial. (VERY EARLY WORK IN PROGRESS)</p>
<p style="color: var(--text-semi-transparent); font-size: 14px;">Last Updated: July 15, 2024</p>
<button onclick="enableDms()" id="enableDms">Enable</button> <button onclick="disableDms()" id="disableDms">Disable</button>
</div>
<br />
<br />
<!-- Interaction Button Layout -->
<div class="themeContainer" onclick="toggleButtonExperimentDetails()">
<img src="/assets/imgs/button_experiment.png" alt="" class="themeImage" />
<div class="themeText">Note Button Layout</div>
</div>
<div id="button_details" style="display: none;">
<p style="color: var(--text-semi-transparent);">Enable the experimental slightly different note button layout</p>
<p style="color: var(--text-semi-transparent); font-size: 14px;">Last Updated: August 17, 2024</p>
<button onclick="enableButton()" id="enableButton">Enable</button> <button onclick="disableButton()" id="disableButton">Disable</button>
</div>
<br />
<br />
<button onclick="document.getElementById('experimentSelect').close();">Nevermind</button>
</dialog>
<dialog id="fatalAccountError">
<h2>Fatal Account Error</h2>
<p>When creating or updating your account, TransSocial encountered an error. If it's an error related to just your email,
this popup will close soon as we automatically resolve email related errors. Otherwise, you're missing your display name, username and/or profile picture. <br />
Before you can use TransSocial, you will need to resolve your missing info.
</p>
<br />
<button onclick="document.getElementById('fatalAccountError').close();">Resolve</button>
</dialog>
<dialog id="fatalAccountError_AutomaticFix">
<h2>Account Repaired</h2>
<p>When creating your account or updating your account, there was a fatal error. However, we were able to automatically resolve this error.
<br /> You may continue using TransSocial.
</p>
<a href="/home"><button>Okay</button></a>
</dialog>
<dialog id="createNote-popup">
<div class="creatingStuff">
<!-- Display above everything else when a note is sending -->
<div class="coverCreateANote" id="coverCreateANote" style="display: none;"></div>
<!-- Main Tab -->
<div class="mainTab-noteCreation" id="mainTab-noteCreation">
<h2 style="float: right; opacity: 0; cursor: default;" id="replyingOrCreating">Create a Note!</h2> <i class="fa-regular fa-circle-xmark fa-lg" style="float: left; margin-top: 10px;" onclick="closeCreateNotePopup()"></i>
<textarea rows="0" placeholder="What's on your mind?" id="noteContent-textarea"></textarea>
<p id="characterLimit_note" style="color: var(--text-semi-transparent)">0/1,250</p>
<br />
<p id="uploadingImage" style="color: var(--success-color); display: none;">Uploading image...</p>
<button onclick="publishNote()" class="publishNoteBtn"><i class="fa-solid fa-pen-to-square"></i> Create!</button>
<br />
<img id="imgToBeUploaded" draggable="false" />
<video id="vidToBeUploaded" draggable="false" autoplay="true" muted="true" controls style="display: none;"></video>
<br />
<div id="quotingNote">
<div class="quoteContainer">
<img src="" alt="Quote user pfp" class="quotePfp" id="notePopupQuotePfp">
<div class="quoteContent">
<div class="quoteHeader">
<span class="quoteDisplay" id="notePopupQuoteDisplay"></span>
<span class="quoteUsername" id="notePopupQuoteUsername"></span>
</div>
<span class="quoteText" id="notePopupQuoteText"></span>
</div>
</div>
</div>
<p style="font-size: small; color: var(--text-semi-transparent); display: none; transform: translateY(-10px);" id="hasntBeenUploadedNotice">Image hasn't been uploaded to TransSocial's server yet. This is just a preview.</p>
<a href="javascript:void(0);" style="display: none; float: left; max-width: auto; transform: translateY(-10px);" id="removeUploadedImage" onclick="removeImage()">Remove Image</a> <a href="javascript:void(0);" style="display: none; float: left; max-width: auto; transform: translateY(-10px); margin-left: 7px;" id="addAltTextToImage" onclick="addAltText()">Add Alt Text</a>
<p id="noteError"></p>
</div>
<!-- Settings Tab -->
<div class="settingsStuff hidden" id="settingStuff">
<i class="fa-solid fa-arrow-left fa-lg" style="float: left; margin-top: 10px;" onclick="swapNoteTab('note')"></i>
<br />
<h2 style="margin-top: 10px;">Add a content warning</h2>
<p style="font-size: 14px; color: var(--text-semi-transparent);">Add a content warning to this note by selecting a category. This helps people see only the content they want to on TransSocial.</p>
<!-- NSFW Checkbox -->
<input type="checkbox" id="isNsfw" /> <span class="noteContainsNsfwContent">Note contains NSFW content.</span>
<p class="optionAlt">This may include nudity, intercourse, intense violence, etc.</p>
<!-- Content Warning Checkbox -->
<input type="checkbox" id="isSensitive" /> Note contains sensitive content.
<p class="optionAlt">Select this if your note has potentionally triggering content.</p>
<!-- Political Checkbox -->
<input type="checkbox" id="isPolitical" /> Note contains political content.
<p class="optionAlt">Select this if your note has political content.</p>
<br />
</div>
<!-- music tab, lets gooooo -->
<div class="hidden" id="musicTab">
<i class="fa-solid fa-arrow-left fa-lg" style="float: left; margin-top: 10px;" onclick="swapNoteTab('note')"></i>
<br />
<h2 style="margin-top: 10px;">Add music to your note</h2>
<p style="font-size: 14px; color: var(--text-semi-transparent);">Suggest music to people, or just make your note feel more lively!</p>
<input type="text" placeholder="Search for a song" id="songQuery" />
<button onclick="displayTracks(document.getElementById('songQuery').value)">Search</button>
<br />
<div id="spotifyPlayer">
<p>Try searching for a song!</p>
</div>
<br />
</div>
<!-- Settings -->
<div class="settingsIcons-noteCreation">
<div class="icons">
<i class="fa-solid fa-flag fa-lg" onclick="swapNoteTab('note')"></i> <i class="fa-solid fa-image fa-lg" onclick="uploadImage()"><input type="file" id="imageUploadInput" accept="image/png, image/jpeg, image/webp, video/mp4, image/gif" style="display: none;"></i> <i class="fa-solid fa-music fa-lg" onclick="swapNoteTab('music')"></i>
</div>
</div>
</div>
</dialog>
<dialog id="prideFlagModal">
<h2>Show pride flag logo during pride month?</h2>
<p>You can turn this off if you find it hard to read, prefer your theme's logo, etc.</p>
<br />
<button onclick="prideFlagHide()" style="text-align: center; width: 100%;">Use Theme Logo (Hide)</button>
<br />
<button onclick="prideFlagShow()" style="text-align: center; width: 100%;">Use Pride Logo (Show)</button>
<br />
<br />
<button onclick="document.getElementById('prideFlagModal').close();">Finish</button>
</dialog>
<dialog id="cancelSubscription">
<h2>Cancel subscription?</h2>
<p>Are you sure you want to cancel your subscription? If you cancel your subscription, you'll lose all your benefits at the end of your billing period.</p>
<p id="errorCancelSub" style="color: var(--error-text); display: none;">error.</p>
<br />
<button onclick="cancelSubscription_Confirm()" style="width: 100%; padding: 5px;">Yes, I'm sure</button>
<button onclick="document.getElementById('cancelSubscription').close()" style="width: 100%; padding: 5px;">Nevermind</button>
</dialog>
<dialog id="signInPrompt">
<img src="/assets/imgs/All_transparent.png" draggable="false" style="width: 450px; height: 100px; margin-left: 17%; margin-right: 15%;" />
<h2>You must be signed in.</h2>
<p>To perform this action, you need to be signed into TransSocial!</p>
<br />
<a href="/auth/login"><button>Login</button></a>
<div style="margin-top: 5px;"></div>
<a href="/auth/register"><button>Register</button></a>
</dialog>
<dialog id="openLink">
<h2>Leaving TransSocial</h2>
<p>This link is taking you to the following website:</p>
<br />
<p style="text-align: center;" id="linkyLink">https://link.com/</p>
<br />
<a href="link" id="externalLink" target="_blank"><button onclick="document.getElementById('openLink').close()">Visit Site</button></a> <a href="javascript:void(1);" onclick="document.getElementById('openLink').close()" style="color: var(--main-color); font-size: 14px;">Go Back</a>
</dialog>
<dialog id="addAltText">
<h2>Add Alt Text</h2>
<p>Help those with visual impairments or low vision understand what your note is.</p>
<textarea id="altText_input" placeholder="A fluffy orange cat sitting on a windowsill, licking its paw and grooming itself"></textarea>
<br />
<button onclick="addAltText_finish()">Finish</button>
</dialog>
<dialog id="addAltText">
<h2>Add Alt Text</h2>
<p>Help those with visual impairments or low vision understand what your note is.</p>
<textarea id="altText_input" placeholder="A fluffy orange cat sitting on a windowsill, licking its paw and grooming itself"></textarea>
<br />
<button onclick="addAltText_finish()">Finish</button>
</dialog>
<dialog id="renoteOrQuote">
<h2>Renote Option</h2>
<p>Would you like to just renote or quote renote?</p>
<p style="font-size: 14px; color: var(--text-semi-transparent);">This won't be in a popup forever, this is just for testing. Remember, you are using an In Development product afterall.</p>
<br />
<button onclick="renoteNormally()"><i class="fa-solid fa-retweet"></i> Renote without Quoting</button>
<br />
<button onclick="quoteRenote()"><i class="fa-solid fa-quote-left"></i> Quote Renote</button>
<br />
<br />
<button onclick="closeRenotePopup()">Nevermind, I don't want to interact</button>
</dialog>
<dialog id="verifyEmail">
<h2><i class="fa-solid fa-envelope-circle-check"></i> Please verify your email</h2>
<p>We need to ensure your account is using an actual email address. This is for your security and to help us drive away bots.</p>
<p style="font-size: 14px; color: var(--text-semi-transparent);">If you're seeing this, you likely changed your email or did not yet verify your email.</p>
<br />
<button onclick="getVerificationEmail()" style="width: 100%;"><i class="fa-solid fa-check-to-slot"></i> Verify Email</button>
</dialog>
<dialog id="emailSent_emailVer">
<h2><i class="fa-solid fa-envelope-circle-check"></i> Email sent!</h2>
<p>Once you verify your email, please click the button below to verify, then we won't bug you again!</p>
<p style="font-size: 14px; color: var(--text-semi-transparent);">If you're seeing this, you likely changed your email or did not yet verify your email.</p>
<br />
<button onclick="window.location.reload()">Check Verification Status</button>
</dialog>
<dialog id="editWhatPartofNote">
<h2>Note Settings</h2>
<p>Typo? Need to delete this note? Here's your own personal control panel!</p>
<br />
<button onclick="editNoteContent()" style="width: 100%;"><i class="fa-solid fa-pen"></i> Edit Note Content</button>
<button onclick="deleteNote()" style="width: 100%;"><i class="fa-solid fa-trash"></i> Delete Note</button>
<br />
<br />
<button onclick="document.getElementById('editWhatPartofNote').close()">Nevermind</button>
</dialog>
<dialog id="checkIfNoteDeletion">
<h2>Delete this note?</h2>
<p>Are you sure? This action can't be reverted!</p>
<br />
<button onclick="deleteNote_fully()" style="width: 100%;"><i class="fa-solid fa-trash"></i> Yes, delete</button>
<button onclick="deleteNote_nevermind()" style="width: 100%;"><i class="fa-solid fa-xmark"></i> Nevermind, I change my mind</button>
</dialog>
<dialog id="noteDeleted">
<h2>Note Deleted</h2>
<p>Note was successfully deleted.</p>
<br />
<button onclick="window.location.reload()">Okay</button>
</dialog>
<dialog id="editNoteContent">
<!-- Display above everything else when a note is updating -->
<div class="coverUpdatingNote" id="coverUpdatingNote" style="display: none;"></div>
<h2>Edit Note Content</h2>
<p>Removing images is currently not supported at this time.</p>
<textarea id="newTextContent" placeholder="What do you want your note to say now?"></textarea>
<p id="newTextContent-characterLimit" style="color: var(--text-semi-transparent)">0/1,250</p>
<br />
<br />
<button onclick="applyEdits()">Apply</button> <button onclick="dontApplyEdits()">Nevermind</button>
</dialog>
<dialog id="noteUpdated">
<h2>Note Updated</h2>
<p>Note was successfully updated.</p>
<br />
<button onclick="window.location.reload()">Okay</button>
</dialog>
<dialog id="accountWarning">
<h2>Account Warning</h2>
<p>Your behavior on TransSocial has been in violation of our <a href="/policies/terms" style="color: var(--main-color);">Terms of Service</a>, therefore has received a warning. Repeat offenses can result in account suspension or other account related punishments.</p>
<br />
<p style="color: var(--text-semi-transparent);">Reason: <span id="warningReason"></span></p>
<br />
<p>Please abide by TransSocial's <a href="/policies/guidelines" style="color: var(--main-color);">Community Guidelines</a> so TransSocial remains a safe place for everyone.</p>
<p>You can continue using TransSocial after agreeing to our Terms of Service.</p>
<input type="checkbox" id="warningAgreeToTerms" style="width: 15px;"> I agree
<p style="color: var(--error-text); display: none;" id="warningAcknowledge">Please agree to the Terms before continuing.</p>
<br />
<button onclick="acknowledgeWarning()">Continue using TransSocial</button>
</dialog>
<dialog id="editDisplayName">
<h2>Edit Display Name</h2>
<p>What's your new online alias?</p>
<br />
<input type="text" placeholder="Enter a new display name!" />
<br />
<br />
<button onclick="confirmDisplayChange()">Apply</button> <button onclick="document.getElementById('editDisplayName').close(); document.getElementById('displayName-text').value = ''">Nevermind</button>
</dialog>
<dialog id="editUsername">
<h2>Edit Username</h2>
<p>Change your username! <span style="color: var(--error-text)">Warning: Your previous username will be up for grabs!</span></p>
<br />
<input type="text" placeholder="Enter a new username!" oninput="usernameCharacters()" />
<p id="characterLimit_username" style="color: var(--text-semi-transparent)">0/20</p>
<p style="color: var(--error-text); display: none; margin-top: 5px;" id="errorTaken"></p>
<br />
<br />
<button onclick="confirmUsernameChange()">Apply</button> <button onclick="document.getElementById('editUsername').close(); document.getElementById('username-text').value = ''">Nevermind</button>
</dialog>
<dialog id="editPronouns">
<h2>Edit Pronouns</h2>
<p>Help create a welcoming space by adding your pronouns!</p>
<br />
<input type="text" placeholder="Enter your new pronouns!" />
<br />
<br />
<button onclick="confirmPronounsChange()">Apply</button> <button onclick="document.getElementById('editPronouns').close(); document.getElementById('pronouns-text').value = ''">Nevermind</button>
</dialog>
<dialog id="editEmail">
<h2>Sensitive Action</h2>
<p>To change your account's email address, please confirm your identity.</p>
<input type="password" id="password_reauth_email" placeholder="Enter your password" />
<p style="font-size: 14.5px; color: var(--error-text); display: none;" id="errorWithReauthenticating_email"></p>
<br />
<br />
<button onclick="changeEmail_reauth()" id="verifyEmail_verification">Verify</button> <button onclick='document.getElementById("editEmail").close()' id="cancelEmailReauthentication">Nevermind</button>
</dialog>
<dialog id="editEmailThisTime">
<h2>New Email</h2>
<p>Thanks for verifying your identity! You may now change your email.</p>
<br />
<input type="email" id="newEmail" placeholder="Enter your new email address" />
<p style="color: var(--error-text); display: none; margin-top: 5px;" id="errorEmail"></p>
<br />
<br />
<button onclick="changeEmail()">Apply</button> <button onclick="document.getElementById('editEmailThisTime').close(); document.getElementById('newEmail').value = '';">Nevermind</button>
</dialog>
<dialog id="seeData">
<h2>Sensitive Action</h2>
<p>To see your account information, please confirm your identity.</p>
<input type="password" id="password_reauth_data" placeholder="Enter your password" />
<p style="font-size: 14.5px; color: var(--error-text); display: none;" id="errorWithReauthenticating_email"></p>
<br />
<br />
<button onclick="seeData_reauth()" id="verifyEmail_verification">Verify</button> <button onclick='document.getElementById("editEmail").close()' id="cancelEmailReauthentication">Nevermind</button>
</dialog>
<dialog id="data">
<h2>Your Account Data</h2>
<p>We know it looks like a lot, but note that most of these are to provide TransSocial to you. You can download this data as a JSON file. (On smaller screens, when you click "Show", please note that it'll show up on the right, so please scroll to the right to see the shown data)</p>
<button onclick="downloadData()" class="downloadData">Download my Data</button> <button onclick="document.getElementById('data').close()">Close</button>
<br />
<br />
<p id="dataDisplay">
<i class="fa-solid fa-spinner fa-spin-pulse"></i> Fetching data...
</p>
<br />
<br />
<button onclick="downloadData()" id="downloadData">Download my Data</button> <button onclick="document.getElementById('data').close()">Close</button>
</dialog>
<dialog id="editPfp">
<h2>Edit Profile Picture</h2>
<p>Change your profile picture to reflect your style.</p>
<br />
<input type="file" accept="image/*" onsubmit="" id="pfpUploader" />
<p style="color: var(--error-text); display: none; margin-top: 5px;" id="pfpError"></p>
<img id="pfpPreview-modal" draggable="false" style="width: 100px; height: 100px; border-radius: 50%; margin-top: 10px; display: none;"/>
<br />
<br />
<button onclick="confirmPfpChange()">Apply</button> <button onclick="document.getElementById('editPfp').close(); document.getElementById('pfpUploader').value = ''; document.getElementById('pfpError').textContent = ''; document.getElementById('pfpError').style.display = 'none'; document.getElementById('pfpPreview-modal').style.display = 'none'; document.getElementById('pfpPreview-modal').src = '';">Nevermind</button>
</dialog>
<dialog id="editBio">
<h2>Edit Bio</h2>
<p>Your bio is your introduction - make it count!</p>
<br />
<textarea placeholder="I'm ..., my pronouns are ... and I like ..."></textarea>
<p style="color: var(--error-text); display: none; margin-top: 5px;" id="bioError"></p>
<br />
<br />
<button onclick="confirmBioChange()">Apply</button> <button onclick="document.getElementById('editBio').close(); document.getElementById('bioText').value = '';">Nevermind</button>
</dialog>
<dialog id="editNsfw">
<h2>Mature Content Preferences</h2>
<p>Would you like mature content to not show, be blurred, or show up completely uncensored?</p>
<br />
<button onclick="nsfwPreferenceHide()" style="text-align: center; width: 100%;">Hide Mature Content</button>
<br />
<button onclick="nsfwPreferenceBlur()" style="text-align: center; width: 100%;">Blur Mature Content</button>
<br />
<button onclick="nsfwPreferenceShow()" style="text-align: center; width: 100%;">Show Mature Content</button>
<br />
<br />
<button onclick="document.getElementById('editNsfw').close();">Finish</button>
</dialog>
<dialog id="editSensitive">
<h2>Sensitive Content Preferences</h2>
<p>Would you like sensitive content to not show, be blurred, or show up completely uncensored?</p>