@@ -4581,23 +4581,49 @@ <h3 class="text-lg font-bold mb-4 dark:text-gray-200">
45814581 <label class="block text-sm font-medium text-gray-700"
45824582 >Password</label
45834583 >
4584- <input
4585- type="password"
4586- name="auth_password"
4587- 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"
4588- />
4584+ <div class="relative">
4585+ <input
4586+ type="password"
4587+ name="auth_password"
4588+ id="auth-password-gw"
4589+ data-sensitive-label="password"
4590+ 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"
4591+ />
4592+ <button
4593+ type="button"
4594+ 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"
4595+ onclick="toggleInputMask('auth-password-gw', this)"
4596+ aria-pressed="false"
4597+ aria-label="Show password"
4598+ >
4599+ Show
4600+ </button>
4601+ </div>
45894602 </div>
45904603 </div>
45914604 <div id="auth-bearer-fields-gw" style="display: none">
45924605 <div>
45934606 <label class="block text-sm font-medium text-gray-700"
45944607 >Token</label
45954608 >
4596- <input
4597- type="password"
4598- name="auth_token"
4599- 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"
4600- />
4609+ <div class="relative">
4610+ <input
4611+ type="password"
4612+ name="auth_token"
4613+ id="auth-token-gw"
4614+ data-sensitive-label="token"
4615+ 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"
4616+ />
4617+ <button
4618+ type="button"
4619+ 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"
4620+ onclick="toggleInputMask('auth-token-gw', this)"
4621+ aria-pressed="false"
4622+ aria-label="Show token"
4623+ >
4624+ Show
4625+ </button>
4626+ </div>
46014627 </div>
46024628 </div>
46034629 <div id="auth-headers-fields-gw" style="display: none">
@@ -7655,29 +7681,55 @@ <h3 class="text-lg font-medium text-gray-900 dark:text-gray-100">
76557681 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"
76567682 />
76577683 </div>
7658- <div>
7659- <label class="block text-sm font-medium text-gray-700"
7660- >Password</label
7661- >
7684+ <div>
7685+ <label class="block text-sm font-medium text-gray-700"
7686+ >Password</label
7687+ >
7688+ <div class="relative">
76627689 <input
76637690 type="password"
76647691 name="auth_password"
7665- 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"
7692+ id="auth-password-gw-edit"
7693+ data-sensitive-label="password"
7694+ 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"
76667695 />
7696+ <button
7697+ type="button"
7698+ 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"
7699+ onclick="toggleInputMask('auth-password-gw-edit', this)"
7700+ aria-pressed="false"
7701+ aria-label="Show password"
7702+ >
7703+ Show
7704+ </button>
76677705 </div>
76687706 </div>
7669- <div id="auth-bearer-fields-gw-edit" style="display: none">
7670- <div>
7671- <label class="block text-sm font-medium text-gray-700"
7672- >Token</label
7673- >
7707+ </div>
7708+ <div id="auth-bearer-fields-gw-edit" style="display: none">
7709+ <div>
7710+ <label class="block text-sm font-medium text-gray-700"
7711+ >Token</label
7712+ >
7713+ <div class="relative">
76747714 <input
76757715 type="password"
76767716 name="auth_token"
7677- 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"
7717+ id="auth-token-gw-edit"
7718+ data-sensitive-label="token"
7719+ 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"
76787720 />
7721+ <button
7722+ type="button"
7723+ 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"
7724+ onclick="toggleInputMask('auth-token-gw-edit', this)"
7725+ aria-pressed="false"
7726+ aria-label="Show token"
7727+ >
7728+ Show
7729+ </button>
76797730 </div>
76807731 </div>
7732+ </div>
76817733 <div id="auth-headers-fields-gw-edit" style="display: none">
76827734 <div class="space-y-3">
76837735 <div class="flex items-center justify-between">
0 commit comments