-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ssp.html
1503 lines (1491 loc) · 90.5 KB
/
ssp.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 http-equiv="Content-Type" content="text/html;charset=UTF-8" />
<title>Site Password</title>
<script language="javascript" type="module" src="src/sha256.js"></script>
<script language="javascript" type="module" src="src/generate.js"></script>
<script language="javascript" type="module" src="src/ssp.js"></script>
<script language="javascript" type="module" src="src/zxcvbn.js"></script>
<link type="text/css" href="src/ssp.css" rel="stylesheet" />
</head>
<body id="root">
<noscript>JavaScript must be enabled to use this tool.</noscript>
<div id="content" class="column" style="overflow-x: auto">
<div id="mainpanel">
<!--
Instructions for converting the contents of this panel to Markdown
1. Insert everything in ssp.html from <div id="instructionpanel" to the
corresponding </div> into the form at
https://www.convertsimple.com/convert-html-to-markdown/.
2. Copy the output to README.md.
3. Use the regular expression
!\[[^\]]*\]\((images\/[^)]*\.(?:png|bmp))\)
and the replacement string
<img src="$1" style="width: 6px; height: 16px; vertical-align: middle;">
to change all occurrences if ![](images...) to <img> tags.
4. Manually edit the nested list in Your User Name to insert 4 spaces in the inner list.
-->
<div id="warnings" class="sticky side-panel" style="display: none; width: auto; top: -10px">
<div id="phishing" class="warning nodisplay" style="width: 25em">
<img src="images/warning.png" class="icon warning-icon">
<span class="warningtext">Warning: Possible Phishing</span>
<p>
<!-- https://www.ipqualityscore.com/threat-feeds/malicious-url-scanner
https://www.abuseipdb.com/
https://www.malwareurl.com/listing-urls.php
https://www.scamadviser.com/
-->
You may be at a fake site that is trying to steal your password.
You previously used the nickname
<span id="phishingtext0" class="phishing"></span>
for
</p>
<span id="phishingtext1" class="phishing"></span>
<br /><br />
<p>The domain asking for your password is</p>
<span id="phishingtext2" class="phishing"></span>
<br /><br />
<p>
Check the domain name carefully; it may not be for your account.
You can check for known bad web pages at
<a class="external-link" id="phishingcheck" href="https://www.scamadviser.com/">ScamAdvisor</a>
or other sites that check for phishing.
</p>
<button id="cancelwarning" type="button"
style="background-color: #21973f; margin: auto; color: white; width:100%"
title="I don't recognize this domain name. Take me away from this web page.">
<span class="btn-text" style="color: white">This domain name looks suspicious</span>
</button>
<br /><br />
<p>
It is common to see different domain names for the same account login.
You may see <span class="example">login.example.com</span> and
<span class="example">www.example.com</span> for the same account at example.com.
Just make sure you recognize the domain name.
</p>
<button id="warningbutton" type="button"
style="background-color: #D51c24; margin: auto; color:white; width:100%"
title="This page is for the same account. Use the same settings for it.">
<span class="btn-text" style="color: white">This page is for the same account</span>
</button>
<br /><br />
<p>
You may have accidentally reused a nickname. In that case, you can just pick a different one.
</p>
<button id="nicknamebutton" type="button"
style="background-color: #1964dc; margin: auto; color:white; width:100%"
title="This page is for a different account. I'll select a new nickname.">
<span class="btn-text" style="color: white">Pick a new nickname</span>
</button>
<br /><br />
</div>
<div id="http" class="warning nodisplay" style="width: 18em">
<span id="httptext">
<img src="images/warning.png" class="icon warning-icon">
<span class="warningtext">Warning: Page Not Secure</span>
<p>
The connection to this page is not secure. Are you sure you want to enter your super password?
</p>
</span>
</div>
<div id="zero" class="warning nodisplay" style="width: 18em"
title="SitePassword didn't find any password fields. You will have to paste your site password.">
<span id="zerotext">
<img src="images/warning.png" class="icon warning-icon">
<span class="warningtext">Warning: No Password Fields</span>
<p>
Site Password did not find any password fields
on this page. Try reloading the page. If that doesn't work, click the
Copy icon in the site password field to put
it on the clipboard.
</p>
</span>
</div>
<div id="forget" class="warning nodisplay" style="width: 18em"
title="You can change your mind or permanently forget the settings for the listed domain names.">
<span id="forgettext">
<img src="images/warning.png" class="icon warning-icon">
<span class="warningtext">Forget Enabled</span>
<p>
Are you sure you want to delete the settings for these domain names?
</p>
<ul id="toforgetlist"></ul>
<div>
<p>You can change your mind,</p>
<button id="cancelbutton" type="button" style="background-color: #21973f; color: white; width:100%"
title="Click to cancel forgetting the settings for the listed domain names.">
<span class="btn-text" style="color: white">Cancel</span>
</button>
<p>
or permanently forget the settings for the listed domain names.
<b>This action cannot be undone.</b>
</p>
<button id="forgetbutton" type="button" style="background-color: #D51c24; color:white; width:100%"
title="Click to delete the settings for the listed domain names.">
<span class="btn-text" style="color: white">Permanently forget</span>
</button>
</div>
</span>
</div>
<div id="nopw" class="warning nodisplay" style="width: 18em"
title="You may need to enable some characters, increase the pasword length, or reduce the number of special characters you're asking for.">
<span id="nopwtext">
<img src="images/warning.png" class="icon warning-icon">
<span class="warningtext">Warning: No Password</span>
<p>
Site Password can't compute a password with these settings. You
either need to enable some characters, increase the pasword length,
or reduce the number of special characters you're asking for. If
that doesn't work, try another nickname for the site.
</p>
</span>
</div>
<div id="multiple" class="warning nodisplay" style="width: 18em">
<span id="multipletext">
<img src="images/warning.png" class="icon warning-icon">
<span class="warningtext">Warning: Multiple Passwords</span>
<p>
There is more than one password field
on this page. Click the Copy icon in the site password field to put it
on the clipboard. <b> When you are done pasting your
password, come back here and click the Clear Clipboard button.</b>
</p>
</span>
</div>
</div>
<div id="helptext" class="sticky side-panel" style="display: none; width: auto">
<div id="domainnamehelptext" name="help" class="helptext">
<br />
<h3>Domain Name Help</h3>
<p>
The domain name is associated with your settings for this account.
It is also the name of a bookmark in the SitePasswordData bookmark folder.
That's the bookmark you can use to get your settings when you're on a machine
that doesn't have the SitePassword extension installed.
</p>
<div class="form-row">
<button id="domainnamehelptextclose" class="button" title="Close this help text">
<span class="btn-text">Close</span>
</button>
<button id="domainnamehelptextmore" title="Learn more about how SitePassword uses domain names.">
<span class="btn-text">Learn more</span>
</button>
</div>
</div>
<div id="superpwhelptext" name="help" class="helptext">
<br />
<h3>Super Password Help</h3>
<p>
You should choose a strong super password, one with lots of characters that contain
upper and lower case letters, numbers, and special characters. Just make sure
it's something you won't forget. SitePassword can't help you if you do.
</p>
<div class="form-row">
<button id="superpwhelptextclose" class="button" title="Close this help text.">
<span class="btn-text">Close<span class="btn-text"></span>
</button>
<button id="superpwhelptextmore" title="Learn more about your super password">
<span class="btn-text">Learn more</span>
</button>
<span style="flex:1"></span>
</div>
</div>
<div id="sitenamehelptext" name="help" class="helptext">
<br />
<h3>Nickname Help</h3>
<p>
Your nickname is the way you refer to this account. It should be easy to remember,
such as 'amazon' for amazon.com, but it doesn't have to be that simple. You can
change the password for an account by changing the nickname. That's useful if you
have to change your password periodically.
</p>
<div class="form-row">
<button id="sitenamehelptextclose" class="button" title="Close this help text.">
<span class="btn-text">Close<span class="btn-text"></span>
</button>
<button id="sitenamehelptextmore" title="Learn more about your site nickname">
<span class="btn-text">Learn more</span>
</button>
</div>
</div>
<div id="usernamehelptext" name="help" class="helptext">
<br />
<h3>User Name Help</h3>
<p>
Your user name is the name you use to log in to the site. It is
associated with the nickname for the account and is used to
calculate your site password. That means you can only have a
single user name for a given nickname.
<span name="hideifnobookmarks">If you want to use different
user names for the same site, follow the instructions for
<span id="sharedref" name="sectionref"><a href="#shared-machines">Shared Machines</a></span>.
<!--
There is another element with id=sharedref, which you're not supposed
to do, but I've got a hack for handling these links that needs it.
-->
</p>
<div class="form-row">
<button id="usernamehelptextclose" class="button" title="Close this help text.">
<span class="btn-text">Close</span>
</button>
<button id="usernamehelptextmore" title="Learn more about your username">
<span class="btn-text">Learn more</span>
</button>
</div>
</div>
<div id="sitepwhelptext" name="help" class="helptext">
<br />
<h3>Site Password Help</h3>
<p>
SitePassword uses your super password, nickname for the site, and
your user name for the site along with the additional settings to
calculate this password for the account.
</p>
<p>
If the password field on
the login form doesn't say <em>Click here for password</em>, you
can use the Copy option on the menu to put this password on the clipboard.
</p>
<div class="form-row">
<button id="sitepwhelptextclose" class="button" title="Close this help text.">
<span class="btn-text">Close</span>
</button>
<button id="sitepwhelptextmore" title="Learn more about your site password">
<span class="btn-text">Learn more</span>
</button>
</div>
</div>
</div>
<div id="instructionpanel" class="sticky side-panel" style="display: none">
<div id="sections">
<section id="overviewinfo" name="instructions" class="instructionpaneltext">
<svg id="openoverview" class="accordian" style="display: block;" width="24px" height="24px"
viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="none">
<circle cx="12" cy="12" r="9" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"
stroke-width="2" />
<path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="m9 11 3 3 3-3" />
</svg>
<svg id="closeoverview" class="accordian" style="display: none;" width="24px" height="24px"
viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="none">
<circle cx="12" cy="12" r="9" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"
stroke-width="2" />
<path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="m9 13 3-3 3 3" />
</svg>
<h3 id="#overview">Overview</h3>
<div id="overviewdiv" style="display: none">
<p>
It's too hard for you to remember a strong password for every account
you use. Password managers take care of this problem for you. Most
of them store your passwords in encrypted form, either on your
machine or in the cloud.
</p>
<p>
SitePassword is different. Instead of
storing your passwords, it calculates them from a single super password
and your nickname and user name
for the account. That means you can usually get your password if
you remember those three things. (Some web pages require additional
settings.) SitePassword automatically saves your settings, so
you don't have to remember them.
</p>
<p>
The
<img src="images/instructionsopen.png" style="width: 16px; height: 16px; vertical-align: middle;">
icon opens the instructions, and the
<img src="images/instructionsclose.bmp" style="width: 16px; height: 16px; vertical-align: middle;">
icon closes them.
</p>
</div>
</section>
<section id="basicinfo" name="instructions" class="instructionpaneltext">
<svg id="openbasic" class="accordian" style="display: block;" width="24px" height="24px" viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg" fill="none">
<circle cx="12" cy="12" r="9" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"
stroke-width="2" />
<path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="m9 11 3 3 3-3" />
</svg>
<svg id="closebasic" class="accordian" style="display: none;" width="24px" height="24px" viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg" fill="none">
<circle cx="12" cy="12" r="9" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"
stroke-width="2" />
<path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="m9 13 3-3 3 3" />
</svg>
<h3 id="#using-the-extension">Using the Extension</h3>
<div id="basicdiv" style="display: none">
<p>
After you install the Chrome extension and visit a page with a
login form, you'll see that the password field tells you to
<em>Click SitePassword</em>. When you click on the SitePassword
icon
<img src="images/icon128.png" style="height: 16px; vertical-align: middle;">, you'll see a form with the domain name field filled in.
Enter your super password, an easy to remember nickname for the
account, and your user name for the account. You will see your
username being filled in and your site password being calculated as you type.
</p>
<p>
Mouse over to the login form's password field, which now should tell you to
<em>Click here for password</em>. Click, and your password gets
filled in. When you return to the same web page on any machine that you synchronize bookmarks with
and that has the extenstion installed, you'll see your user name filled in and
instructions to <em>Click here for password</em>. Click, and your
password gets filled in.
</p>
<p>
You will have to enter your super password each time you start your
browser. That's because SitePassword never stores your
super password; it only remembers it for the duration of your
browser session. If your settings aren't there when you think they
should be, reloading the page with the login form will solve the
problem.
</p>
</div>
</section>
<section id="domainnameinfo" name="instructions" class="instructionpaneltext">
<svg id="opendomainname" class="accordian" style="display: block;" width="24px" height="24px"
viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="none">
<circle cx="12" cy="12" r="9" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"
stroke-width="2" />
<path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="m9 11 3 3 3-3" />
</svg>
<svg id="closedomainname" class="accordian" style="display: none;" width="24px" height="24px"
viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="none">
<circle cx="12" cy="12" r="9" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"
stroke-width="2" />
<path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="m9 13 3-3 3 3" />
</svg>
<h3 id="#the-domain-name">The Domain Name</h3>
<div id="domainnamediv" style="display:none">
<p>
The domain name is associated with the settings for this account.
It is also the name of a bookmark in the SitePasswordData bookmark folder.
That's the bookmark you can use to get your settings when you're on a machine
that doesn't have the SitePassword extension installed.
</p>
<p>
You may have more than one domain name for a given account because some web sites
use more than one domain name for logging into the same account. You'll get the same password
for all of the domain names as long as they are all associated with the same nickname.
</p>
</div>
</section>
<section id="superpwinfo" name="instructions" class="instructionpaneltext">
<svg id="opensuperpw" class="accordian" style="display: block;" width="24px" height="24px"
viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="none">
<circle cx="12" cy="12" r="9" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"
stroke-width="2" />
<path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="m9 11 3 3 3-3" />
</svg>
<svg id="closesuperpw" class="accordian" style="display: none;" width="24px" height="24px"
viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="none">
<circle cx="12" cy="12" r="9" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"
stroke-width="2" />
<path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="m9 13 3-3 3 3" />
</svg>
<h3 id="#your-super-password">Your Super Password</h3>
<div id="superpwdiv" style="display:none">
<p>
You should choose a strong super password, one with upper and
lower case letters, numbers, and special characters. The stronger
the better. The reason is simple. A bad guy who knows one site
password and can guess your nickname and user name for that account
can start guessing super passwords. You want to make that job has
hard as you can.
</p>
<p>
You can protect yourself further by using different super passwords
for different kinds of accounts. You could have one that you use for
banking, another for subscriptions, and a third for sites you find
sketchy.
</p>
<p>
SitePassword doesn't prevent you from using a weak super password,
but it does warn you. There is a strength indicator directly above
the super password field. It uses a meter and color to
let you know how strong your super password is. The tooltip tells
you how long it would take a determined adversary to guess your super password.
</p>
<p>
You'll notice that your super password is not usually marked Strong until it is
longer than a site password marked Strong. That's because the super password
is something you can remember, while the site password is effectively a
random string of characters, which is less guessable.
</p>
<p>
SitePassword cannot retrieve your super password. You should make
sure it's something you won't easily forget. You might even want
to write it down and keep the copy in a secure place.
</p>
</div>
</section>
<section id="sitenameinfo" name="instructions" class="instructionpaneltext">
<svg id="opensitename" class="accordian" style="display: block;" width="24px" height="24px"
viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="none">
<circle cx="12" cy="12" r="9" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"
stroke-width="2" />
<path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="m9 11 3 3 3-3" />
</svg>
<svg id="closesitename" class="accordian" style="display: none;" width="24px" height="24px"
viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="none">
<circle cx="12" cy="12" r="9" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"
stroke-width="2" />
<path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="m9 13 3-3 3 3" />
</svg>
<h3 id="#your-site-nickname">Your Site Nickname</h3>
<div id="sitenamediv" style="display: none;">
<p>
You refer to an account by assigning it a nickname that should be easy to remember,
such as 'amazon' for amazon.com, but it doesn't have to be that simple. For example,
you might want to append the year if you must change your password annually.
</p>
<p>
Your settings are associated with the site nickname. If you change one of
the settings, that change will apply for all domain names associated with
that account. If you change a nickname, all domain names associatd with the old nickname
will be associated with the new one.
</p>
<p>
You <span id="changeref" name="sectionref"><a href="#changing-a-site-password">change a site password</a></span> by changing the nickname.
All your settings will then be associated with the new nickname.
</p>
</div>
</section>
<section id="usernameinfo" name="instructions" class="instructionpaneltext">
<svg id="openusername" class="accordian" style="display: block;" width="24px" height="24px"
viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="none">
<circle cx="12" cy="12" r="9" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" />
<path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m9 11 3 3 3-3" />
</svg>
<svg id="closeusername" class="accordian" style="display: none;" width="24px" height="24px"
viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="none">
<circle cx="12" cy="12" r="9" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" />
<path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m9 13 3-3 3 3" />
</svg>
<h3 id="your-user-name">Your User Name</h3>
<div id="usernamediv" style="display: none;">
<p>
Your user name is the name you use to log in to the account. It is
associated with the nickname for the account and is used to
calculate your site password. That means you can only have a
single user name for a given nickname. If you want to use different
user names for the same site, follow the instructions for
<span id="sharedref" name="sectionref"><a href="#shared-machines">Shared Machines</a></span>.
</p>
<p>
SitePassword will attempt to fill in the userid field of a login form. If you
don't see it, one of a few things happened.
</p>
<ol>
<li>You never provided your settings for this domain name.</li>
<ul>
<li>This is the first time you've used SitePassword for this account.</li>
<li>This is a different domain name for logging into the same account.</li>
<li>You are at a fake site that is trying to steal your password.</li>
</ul>
<li>SitePassword incorrectly guessed the location of the userid field.</li>
<li>SitePassword couldn't find the userid field.</li>
</ol>
<p>
In the last two cases,
you'll have to fill in your userid manually, which you can do by copying
it to the clipboard using the
<img src="images/clipboard.png" alt="copy" style="width: 16px; height: 16px; vertical-align: middle;"/>
icon in the userid field.
</p>
</div>
</section>
<section id="sitepwinfo" name="instructions" class="instructionpaneltext">
<svg id="opensitepw" class="accordian" style="display: block;" width="24px" height="24px"
viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="none">
<circle cx="12" cy="12" r="9" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"
stroke-width="2" />
<path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="m9 11 3 3 3-3" />
</svg>
<svg id="closesitepw" class="accordian" style="display: none;" width="24px" height="24px"
viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="none">
<circle cx="12" cy="12" r="9" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"
stroke-width="2" />
<path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="m9 13 3-3 3 3" />
</svg>
<h3 id="#your-site-password">Your Site Password</h3>
<div id="sitepwdiv" style="display: none;">
<p>
You only need to open SitePassword to enter your super password, to
set up a new site, or when you have to paste your site password. Most
of the time, you can just click on the login
form's password field.
</p>
<p>
SitePassword could generate a weak site password just by chance.
To let you know that has happened, it uses the same strength
meter that appears above your super password
to tell you how strong your site password is. A tooltip tells you how long it
would take a determined adversary to guess your site password.
</p>
<p>
When the generated password can't be used, say if you've been given one that
you're not allowed to change, SitePassword can remember one you provide, as
explained in <span id="provideref" name="sectionref"><a href="#providing-a-password">Providing a Password</a></span>.
</p>
<p>
You can also get your passwords without the extension. Go to
<a class="external-link" href="https://sitepassword.info">https://sitepassword.info</a> and fill
in the form.
</p>
</div>
</section>
<section id="provideinfo" name="instructions" class="instructionpaneltext">
<svg id="openprovide" class="accordian" style="display: block;" width="24px" height="24px"
viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="none">
<circle cx="12" cy="12" r="9" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"
stroke-width="2" />
<path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="m9 11 3 3 3-3" />
</svg>
<svg id="closeprovide" class="accordian" style="display: none;" width="24px" height="24px"
viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="none">
<circle cx="12" cy="12" r="9" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"
stroke-width="2" />
<path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="m9 13 3-3 3 3" />
</svg>
<h3 id="#providing-a-password">Providing a Password</h3>
<div id="providediv" style="display: none;">
<p>
Unlike most password managers that calculate your password, SitePassword gives you
the option to provide your own. This is useful if you have a password that you
can't change, such as one provided by your employer. You can also use this option
if SitePassword can't compute a password acceptable by the site.
</p>
<p>
The password you
provide is encrypted with the computed site password as a key. That means you must
fill in the form before entering your password. After you fill in the form, open the
settings and check the <em>Provide your own site password</em> check box.
You'll then be able to enter your password into the site password field.
</p>
</div>
</section>
<section id="menusinfo" name="instructions" class="instructionpaneltext">
<svg id="openmenus" class="accordian" style="display: block;" width="24px" height="24px"
viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="none">
<circle cx="12" cy="12" r="9" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"
stroke-width="2" />
<path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="m9 11 3 3 3-3" />
</svg>
<svg id="closemenus" class="accordian" style="display: none;" width="24px" height="24px"
viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="none">
<circle cx="12" cy="12" r="9" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"
stroke-width="2" />
<path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="m9 13 3-3 3 3" />
</svg>
<h3 id="#input-field-menus">Input Field Menus</h3>
<div id="menusdiv" style="display:none">
<p>
Each of the input fields has a menu that shows up when you mouse over
(or tap on a touchscreen) the 3 dots in the right side of the field
(<img src="images/3bluedots.png" style="height: 16px; width: 6px; vertical-align: middle;">).
Each field has a
particular set of menu items.
If an icon is grayed out, that function is not available for that field. For example, you can't show
your super password if the field is empty.
</p>
<p>
<img src="images/help.png" alt="help" style="width: 16px; height: 16px; vertical-align: middle;"/>
Every field has a help option,
which provides a brief summary of the information provided in these Instructions.
</p>
<p>
<img src="images/forget.png" alt="forget" style="width: 16px; height: 16px; vertical-align: middle;"/>
The domain name, sitename, and username fields have a Forget option. For example, if you click this icon in the site nickname
field, you will be given the opportunity to permanently forget the settings for all domain names associated
with that site nickname.
</p>
<p>
<img src="images/clipboard.png" alt="forget" style="width: 16px; height: 16px; vertical-align: middle;"/>
The username and site password fields have a Copy option, which copies the contents of the field to the clipboard.
</p>
<p>
<img src="images/show.png" alt="forget" style="width: 16px; height: 16px; vertical-align: middle;"/>
<img src="images/hide.png" alt="forget" style="width: 16px; height: 16px; vertical-align: middle;"/>
The super and site password fields give you the option of showing or hiding the contents of the field.
</p>
</div>
</section>
<section id="settingsinfo" name="instructions" class="instructionpaneltext">
<svg id="opensettings" class="accordian" style="display: block;" width="24px" height="24px"
viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="none">
<circle cx="12" cy="12" r="9" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"
stroke-width="2" />
<path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="m9 11 3 3 3-3" />
</svg>
<svg id="closesettings" class="accordian" style="display: none;" width="24px" height="24px"
viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="none">
<circle cx="12" cy="12" r="9" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"
stroke-width="2" />
<path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="m9 13 3-3 3 3" />
</svg>
<h3 id="#additional-settings">Additional Settings</h3>
<div id="settingsdiv" style="display:none">
<p>
The settings panel is divided
into three sections. The first section is about your super and site passwords.
The second section controls how SitePassword computes your site password.
The third section lets you download your settings and export your passwords.
Click on the
<img src="images/gear.png" alt="forget" style="width: 16px; height: 16px; vertical-align: middle;"/>
icon to open the settings panel and the
<img src="images/gear2.png" alt="forget" style="width: 16px; height: 16px; vertical-align: middle;"/>
icon to close it.
</p>
<p>
The top section of the settings panel has three settings related to your super and site passwords.
SitePassword allows you to provide your own password as explained in
<a id="provideref" href="#providing-a-password" name="sectionref">Providing a Password</a>,
</p>
<p>
You usually leave your super password filled in for the entire browser session,
but you might not want to do that on a shared machine. Checking the <em>Clear super password
on use</em> means don't have to remember to clear it.
</p>
<p>
Your site password is not hidden by default. Surprisingly, people
develop the ability to recognize their site passwords, allowing them
detect typos when re-entering their super passwords.
Check the <em>Hide site password by default</em> button to hide it.
</p>
<p>
The next section controls how SitePassword computes your site password and is
explained in <span id="acceptableref" name="sectionref"><a href="#computing-an-acceptable-password">Computing an Acceptable Password</a></span>.
<p>
The <em>Download site data</em> button is explained in
<span id="downloadref" name="sectionref"><a href="#downloading-your-settings">Downloading Your Settings</a></span>, and the
<em>Export passwords</em> button, in <span id="exportref" name="sectionref"><a href="#exporting-your-passwords">Exporting Your Passwords</a></span>.
</p>
</div>
</section>
<section id="acceptableinfo" name="instructions" class="instructionpaneltext">
<svg id="openacceptable" class="accordian" style="display: block;" width="24px" height="24px"
viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="none">
<circle cx="12" cy="12" r="9" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"
stroke-width="2" />
<path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="m9 11 3 3 3-3" />
</svg>
<svg id="closeacceptable" class="accordian" style="display: none;" width="24px" height="24px"
viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="none">
<circle cx="12" cy="12" r="9" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"
stroke-width="2" />
<path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="m9 13 3-3 3 3" />
</svg>
<h3 id="#computing-an-acceptable-password">Computing an acceptable password</h3>
<div id="acceptablediv" style="display: none;">
<p>
Some web sites have strict password rules, how long it must be,
if it must contain upper case or lower case letters, numbers, or
special characters, including restrictions on which special
characters are allowed.
</p>
<p>
If you run into a site that doesn't
accept the calculated password, click
<img src="images/gear.png" alt="forget" style="width: 16px; height: 16px; vertical-align: middle;"/>
and change the appropriate menu entries. SitePassword
was tested on hundreds of web sites to make sure it can almost always
compute a valid password.
</p>
<p>
The defaults
were chosen because SitePassword can calculate a password that is acceptable to most
sites with them. You can change these settings if you run into a site that doesn't accept the
calculated password.
</p>
<p>
Although these settings produce valid passwords for most sites, you might feel more comfortable generating
stronger site passwords by making them longer or by including special characters. Click
<em>Save as default</em> to make these settings the default for all new accounts.
</p>
</div>
</section>
<section id="changeinfo" name="instructions" class="instructionpaneltext">
<svg id="openchange" class="accordian" style="display: block;" width="24px" height="24px"
viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="none">
<circle cx="12" cy="12" r="9" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"
stroke-width="2" />
<path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="m9 11 3 3 3-3" />
</svg>
<svg id="closechange" class="accordian" style="display: none;" width="24px" height="24px"
viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="none">
<circle cx="12" cy="12" r="9" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"
stroke-width="2" />
<path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="m9 13 3-3 3 3" />
</svg>
<h3 id="#changing-a-site-password">Changing a Site Password</h3>
<div id="changediv" style="display: none;">
<p>
Some sites make you change your password periodically. SitePassword
makes that easy. Just change your nickname for the account. For example,
if your current nickname is <em>MyBank1</em>, and they make you change
your password, you could change the nickname to
<em>MyBank2</em>. Your new site password will be completely different
from the old one.
</p>
</div>
</section>
<section id="clipboardinfo" name="instructions" class="instructionpaneltext">
<svg id="openclipboard" class="accordian" style="display: block;" width="24px" height="24px"
viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="none">
<circle cx="12" cy="12" r="9" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"
stroke-width="2" />
<path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="m9 11 3 3 3-3" />
</svg>
<svg id="closeclipboard" class="accordian" style="display: none;" width="24px" height="24px"
viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="none">
<circle cx="12" cy="12" r="9" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"
stroke-width="2" />
<path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="m9 13 3-3 3 3" />
</svg>
<h3 id="#using-the-clipboard">Using the Clipboard</h3>
<div id="clipboarddiv" style="display: none;">
<p>
There are two times when you will use the clipboard. Although SitePassword
finds the password field on a large number of web sites,
there are likely some where it won't. Your first clue that happened
is that you don't see either <em>Click here for password</em> or
<em>Click SitePassword</em> in the password field. You'll know for
sure that happened if neither of them shows up as a tooltip after
holding your mouse over the login form's password field for a couple of
seconds. In that case, click on the SitePassword icon
<img src="images/icon128.png" alt="SitePassword" style="width: 16px; height: 16px; vertical-align: middle;"/>
and copy your site password to the clipboard by clicking on
<img src="images/clipboard.png" alt="Clipboard", style="width: 16px; height: 16px; vertical-align: middle;">.
</p>
<p>
The other time you'll use the clipboard is on pages that have more than
one password field, such as those for
creating an account or changing your password. In those cases, you
may see instructions to <em>Paste your password here</em>.
Clicking on the SitePassword icon and then the clipboard icon in the
site password field will put your site password on the clipboard.
</p>
<p>
Leaving your site password on the clipboard for any length of time
can be dangerous. SitePassword will alert you to this danger by
changing its icon to
<img src="images/icon128pw.png" alt="SitePassword" style="width: 16px; height: 16px; vertical-align: middle;"/>
when you use the clipboard icon. You can always
clear the clipbord and reset
the warning by using the SitePassword <em>Clear Clipboard</em> button or by copying
something else to the clipboard.
(These steps only clear the top item if the clipboard provides a stack of items.)
</p>
</div>
</section>
<section id="phishinginfo" name="instructions" class="instructionpaneltext">
<svg id="openphishing" class="accordian" style="display: block;" width="24px" height="24px"
viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="none">
<circle cx="12" cy="12" r="9" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"
stroke-width="2" />
<path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="m9 11 3 3 3-3" />
</svg>
<svg id="closephishing" class="accordian" style="display: none;" width="24px" height="24px"
viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="none">
<circle cx="12" cy="12" r="9" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"
stroke-width="2" />
<path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="m9 13 3-3 3 3" />
</svg>
<h3 id="#phishing-warning">Phishing Warning</h3>
<div id="phishingdiv" style="display: none;">
<p>
SitePassword includes an antiphishing feature. If you try to use
the same nickname for another domain name, you will get a big,
scary warning. It's telling you that you may be at a site
spoofing the one you think you are at.
</p>
<p>
Unfortunately, you will
also see this warning when you are not being tricked. Many
websites have several different login pages for the same account.
So, when you see the warning, check the domain name in the warning message
to make sure it's a login page for the account you think it is.
</p>
</div>
</section>
<section id="syncinfo" name="instructions" class="instructionpaneltext">
<svg id="opensync" class="accordian" style="display: block;" width="24px" height="24px" viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg" fill="none">
<circle cx="12" cy="12" r="9" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"
stroke-width="2" />
<path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="m9 11 3 3 3-3" />
</svg>
<svg id="closesync" class="accordian" style="display: none;" width="24px" height="24px" viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg" fill="none">
<circle cx="12" cy="12" r="9" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"
stroke-width="2" />
<path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="m9 13 3-3 3 3" />
</svg>
<h3 id="synchronizing-across-your-machines">Synchronizing across Your Machines</h3>
<div id="syncdiv" style="display:none">
<p>
If you go to the same login page on a different machine that you
synchronize bookmarks with, you'll see your user name
for the account filled in for you. That's because the extension
stores your settings in a bookmark folder called
<em>SitePasswordData</em>. The extension uses the bookmark named
CommonSettings for its own use. The
bookmarks with domain names for titles can be used at
<a class="external-link" href="https://sitepassword.info">https://sitepassword.info</a> .
</p>
<p>
<b>You must turn on synchronization in your browser to use this feature.</b>
</p>
</div>
<div id="syncSafaridiv" style="display:none">
<p>
If you go to the same login page on a different machine that
you synchronize with,
you'll see your user name for the account filled in for you.
That's because SitePassword uses the browser to synchronize
your settings.
</p>
</div>
</section>
<section id="sharedinfo" name="instructions" class="instructionpaneltext">
<svg id="openshared" class="accordian" style="display: block;" width="24px" height="24px"
viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="none">
<circle cx="12" cy="12" r="9" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"
stroke-width="2" />
<path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="m9 11 3 3 3-3" />
</svg>
<svg id="closeshared" class="accordian" style="display: none;" width="24px" height="24px"
viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="none">
<circle cx="12" cy="12" r="9" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"
stroke-width="2" />
<path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="m9 13 3-3 3 3" />
</svg>
<h3 id="shared-machines">Shared Machines</h3>
<div id="shareddiv" style="display: none">
<p>
Many households have one machine shared by everybody. It's likely
that everyone uses the same user name and password for certain
accounts, such as streaming services. It's also likely that those
people use their individual user names and passwords for other
accounts, such as social media.
</p>
<p>
SitePassword accomodates those uses with a feature provided by
your browser called <em>profiles</em>. Simply create one profile for the
shared account and one for each individual.
</p>
</div>
</section>
<section id="downloadinfo" name="instructions" class="instructionpaneltext">
<svg id="opendownload" class="accordian" style="display: block;" width="24px" height="24px"
viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="none">
<circle cx="12" cy="12" r="9" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"
stroke-width="2" />
<path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="m9 11 3 3 3-3" />
</svg>
<svg id="closedownload" class="accordian" style="display: none;" width="24px" height="24px"
viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="none">
<circle cx="12" cy="12" r="9" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"
stroke-width="2" />
<path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="m9 13 3-3 3 3" />
</svg>
<h3 id="#downloading-your-settings">Downloading Your Settings</h3>
<div id="downloaddiv" style="display: none;">
<p>
There is a <em>Download Site Data</em> button at the bottom of
the popup window after you click
<img src="images/gear.png" alt="SitePassword" style="width: 16px; height: 16px; vertical-align: middle;"/>.
Clicking this button lets you save your settings in a file you
can reference if you need to look them up. All settings created on machines
you synchronize bookmarks with are included.
</p>
</div>
</section>
<section id="exportinfo" name="instructions" class="instructionpaneltext">
<svg id="openexport" class="accordian" style="display: block;" width="24px" height="24px"
viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="none">
<circle cx="12" cy="12" r="9" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"
stroke-width="2" />
<path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="m9 11 3 3 3-3" />
</svg>
<svg id="closeexport" class="accordian" style="display: none;" width="24px" height="24px"
viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="none">
<circle cx="12" cy="12" r="9" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"
stroke-width="2" />
<path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="m9 13 3-3 3 3" />
</svg>
<h3 id="#exporting-your-passwords">Exporting Your Passwords</h3>
<div id="exportdiv" style="display: none;">
<p>
There may come a time when you want to use a different password manager.
In that case you can use the <em>Export passwords</em> button at the bottom of
the popup window after you click
<img src="images/gear.png" alt="SitePassword" style="width: 16px; height: 16px; vertical-align: middle;"/>.
Clicking this button creates a file with your passwords. You can see a readable form
of the data in the file by opening it in a spreadsheet.
</p>
<p>
You'll have to export to a separate file for each super password you use. Since SitePassword doesn't track
your super passwords, it doesn't know which one goes with which domain. As a result each file
will have a site password for every domain name in your SitePasswordData bookmarks folder.
Only the domains associated with that super password will have the correct site password.
</p>
<p>
<b>Be very careful with this file.</b> Completely delete it from your machine, including
emptying the trash, after you use it. If you don't, anyone who gets access to your machine
can get your passwords.
</p>
</div>
</section>
<section id="extensioninfo" name="instructions" class="instructionpaneltext">
<svg id="openextension" class="accordian" style="display: block;" width="24px" height="24px"
viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="none">
<circle cx="12" cy="12" r="9" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"
stroke-width="2" />
<path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="m9 11 3 3 3-3" />
</svg>
<svg id="closeextension" class="accordian" style="display: none;" width="24px" height="24px"
viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="none">