Files
Unify/application/elements/inputPassword.js

28 lines
313 B
JavaScript
Raw Permalink Normal View History

2025-12-25 11:16:59 +01:00
import input from './input.js';
export default class inputPassword extends input{
inputType = "password";
outline = "none";
constructor(){
super();
this.type = "password";
}
create() {
this.customElement.setAttribute("type", this.inputType);
}
}