process password protected pdf files
This commit is contained in:
committed by
Pete Matsyburka
parent
a573545ead
commit
e864e8a47f
@@ -0,0 +1,19 @@
|
||||
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')
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user