improve user password reset
This commit is contained in:
committed by
Pete Matsyburka
parent
aeea619059
commit
f7be74eb73
@@ -0,0 +1,14 @@
|
||||
export default class extends HTMLElement {
|
||||
connectedCallback () {
|
||||
this.input = document.getElementById(this.dataset.inputId)
|
||||
|
||||
this.input.addEventListener('input', () => {
|
||||
if (this.input.value.trim().length > 0) {
|
||||
this.classList.remove('hidden')
|
||||
} else {
|
||||
this.classList.add('hidden')
|
||||
this.querySelectorAll('input').forEach(input => { input.value = '' })
|
||||
}
|
||||
})
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user