mirror of
https://github.com/jetkvm/kvm.git
synced 2026-03-02 22:58:00 -05:00
Add support for input type password for clipboard #371
Labels
No labels
component/keyboard-layout
component: cloud
component: device screen
component: extensions
component: hid/keyboard
component: hid/mouse
component: network
component: timesync
component: ui
component: updater
component: usb
component: usb/hid
component: usb/storage
component: video
component: webrtc
component: webserver
need-more-details
status: working-in-progress
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/kvm#371
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @xize on GitHub (Jul 16, 2025).
A note for the community
Disclaimer
Subsystem
None
Feature description
Hi,
I would like to request a option for a checkbox to alter the textarea in the clipboard window with javascript to turn it into a password field, this could be quite usefull for when pasting a Bitlocker or Veracrypt bootloader password.
Currently I don't think it is easy to implement such feature when I look into
/ui/src/components/popovers/PasteModal.tsxthe javascript logic might be easier to implement in order to switch between element by DOM manipulation, but I think that a new component has to be written for the password field, using a textarea is a no go because the element doesn't support*masking.My logic of GO isn't very good, but I can read it, there might be a few components of interest:
/ui/src/components/AuthLayout.tsx<- likely not a good place./ui/src/components/Fieldset.tsx<- this seem the base of input fields or textareas perhaps a new component needs to extend this.Thank you very much!, have a nice day 👍