Files
docuseal/app/javascript/elements/prompt_password.js
T
2024-01-15 02:22:40 +02:00

20 lines
358 B
JavaScript

export default class extends HTMLElement {
connectedCallback () {
const input = document.createElement('input')
input.type = 'hidden'
input.name = 'password'
input.value = prompt('Enter PDF password')
this.form.append(input)
this.form.requestSubmit()
this.remove()
}
get form () {
return this.closest('form')
}
}