First commit

This commit is contained in:
2025-12-25 11:16:59 +01:00
commit 0c5ca09a63
720 changed files with 329234 additions and 0 deletions

View File

@@ -0,0 +1,32 @@
import inputPassword from '/elements/inputPassword.js';
export default class signupPasswordCheck extends inputPassword{
useCustomElement = true;
async keyup( event ){
this.value = event.target.value;
if( this.value == this.parent.password.value ) {
this.border = "#28a745";
this.color = "#495057";
this.shadow = "0px 0px 4px 2px #28a745";
} else {
this.border = "1px solid #dc3545";
this.color = "black";
this.shadow = "0px 0px 4px 2px #dc3545";
}
}
}