@@ -4528,23 +4528,49 @@ <h3 class="text-lg font-bold mb-4 dark:text-gray-200">
45284528 <label class="block text-sm font-medium text-gray-700"
45294529 >Password</label
45304530 >
4531- <input
4532- type="password"
4533- name="auth_password"
4534- class="mt-1 block w-full rounded-md border border-gray-300 dark:border-gray-700 shadow-sm focus:border-indigo-500 focus:ring-indigo-500 dark:bg-gray-900 dark:placeholder-gray-300 dark:text-gray-300"
4535- />
4531+ <div class="relative">
4532+ <input
4533+ type="password"
4534+ name="auth_password"
4535+ id="auth-password-gw"
4536+ data-sensitive-label="password"
4537+ class="mt-1 block w-full rounded-md border border-gray-300 dark:border-gray-700 shadow-sm focus:border-indigo-500 focus:ring-indigo-500 dark:bg-gray-900 dark:placeholder-gray-300 dark:text-gray-300 pr-16"
4538+ />
4539+ <button
4540+ type="button"
4541+ class="absolute inset-y-0 right-0 flex items-center px-3 text-xs font-medium text-indigo-600 hover:text-indigo-800 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500 dark:text-indigo-300"
4542+ onclick="toggleInputMask('auth-password-gw', this)"
4543+ aria-pressed="false"
4544+ aria-label="Show password"
4545+ >
4546+ Show
4547+ </button>
4548+ </div>
45364549 </div>
45374550 </div>
45384551 <div id="auth-bearer-fields-gw" style="display: none">
45394552 <div>
45404553 <label class="block text-sm font-medium text-gray-700"
45414554 >Token</label
45424555 >
4543- <input
4544- type="password"
4545- name="auth_token"
4546- class="mt-1 block w-full rounded-md border border-gray-300 dark:border-gray-700 shadow-sm focus:border-indigo-500 focus:ring-indigo-500 dark:bg-gray-900 dark:placeholder-gray-300 dark:text-gray-300"
4547- />
4556+ <div class="relative">
4557+ <input
4558+ type="password"
4559+ name="auth_token"
4560+ id="auth-token-gw"
4561+ data-sensitive-label="token"
4562+ class="mt-1 block w-full rounded-md border border-gray-300 dark:border-gray-700 shadow-sm focus:border-indigo-500 focus:ring-indigo-500 dark:bg-gray-900 dark:placeholder-gray-300 dark:text-gray-300 pr-16"
4563+ />
4564+ <button
4565+ type="button"
4566+ class="absolute inset-y-0 right-0 flex items-center px-3 text-xs font-medium text-indigo-600 hover:text-indigo-800 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500 dark:text-indigo-300"
4567+ onclick="toggleInputMask('auth-token-gw', this)"
4568+ aria-pressed="false"
4569+ aria-label="Show token"
4570+ >
4571+ Show
4572+ </button>
4573+ </div>
45484574 </div>
45494575 </div>
45504576 <div id="auth-headers-fields-gw" style="display: none">
@@ -7602,29 +7628,55 @@ <h3 class="text-lg font-medium text-gray-900 dark:text-gray-100">
76027628 class="mt-1 block w-full rounded-md border border-gray-300 shadow-sm focus:border-indigo-500 focus:ring-indigo-500 dark:bg-gray-900 dark:placeholder-gray-300 dark:text-gray-300"
76037629 />
76047630 </div>
7605- <div>
7606- <label class="block text-sm font-medium text-gray-700"
7607- >Password</label
7608- >
7631+ <div>
7632+ <label class="block text-sm font-medium text-gray-700"
7633+ >Password</label
7634+ >
7635+ <div class="relative">
76097636 <input
76107637 type="password"
76117638 name="auth_password"
7612- class="mt-1 block w-full rounded-md border border-gray-300 shadow-sm focus:border-indigo-500 focus:ring-indigo-500 dark:bg-gray-900 dark:placeholder-gray-300 dark:text-gray-300"
7639+ id="auth-password-gw-edit"
7640+ data-sensitive-label="password"
7641+ class="mt-1 block w-full rounded-md border border-gray-300 shadow-sm focus:border-indigo-500 focus:ring-indigo-500 dark:bg-gray-900 dark:placeholder-gray-300 dark:text-gray-300 pr-16"
76137642 />
7643+ <button
7644+ type="button"
7645+ class="absolute inset-y-0 right-0 flex items-center px-3 text-xs font-medium text-indigo-600 hover:text-indigo-800 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500 dark:text-indigo-300"
7646+ onclick="toggleInputMask('auth-password-gw-edit', this)"
7647+ aria-pressed="false"
7648+ aria-label="Show password"
7649+ >
7650+ Show
7651+ </button>
76147652 </div>
76157653 </div>
7616- <div id="auth-bearer-fields-gw-edit" style="display: none">
7617- <div>
7618- <label class="block text-sm font-medium text-gray-700"
7619- >Token</label
7620- >
7654+ </div>
7655+ <div id="auth-bearer-fields-gw-edit" style="display: none">
7656+ <div>
7657+ <label class="block text-sm font-medium text-gray-700"
7658+ >Token</label
7659+ >
7660+ <div class="relative">
76217661 <input
76227662 type="password"
76237663 name="auth_token"
7624- class="mt-1 block w-full rounded-md border border-gray-300 shadow-sm focus:border-indigo-500 focus:ring-indigo-500 dark:bg-gray-900 dark:placeholder-gray-300 dark:text-gray-300"
7664+ id="auth-token-gw-edit"
7665+ data-sensitive-label="token"
7666+ class="mt-1 block w-full rounded-md border border-gray-300 shadow-sm focus:border-indigo-500 focus:ring-indigo-500 dark:bg-gray-900 dark:placeholder-gray-300 dark:text-gray-300 pr-16"
76257667 />
7668+ <button
7669+ type="button"
7670+ class="absolute inset-y-0 right-0 flex items-center px-3 text-xs font-medium text-indigo-600 hover:text-indigo-800 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500 dark:text-indigo-300"
7671+ onclick="toggleInputMask('auth-token-gw-edit', this)"
7672+ aria-pressed="false"
7673+ aria-label="Show token"
7674+ >
7675+ Show
7676+ </button>
76267677 </div>
76277678 </div>
7679+ </div>
76287680 <div id="auth-headers-fields-gw-edit" style="display: none">
76297681 <div class="space-y-3">
76307682 <div class="flex items-center justify-between">
0 commit comments