mirror of
https://github.com/cydrobolt/polr.git
synced 2024-11-09 19:52:28 +01:00
11 lines
308 B
JavaScript
11 lines
308 B
JavaScript
|
$('#passwordConfirm').on('keyup', function() {
|
||
|
var password = $('#passwordFirst').val();
|
||
|
var confirm_password = $('#passwordConfirm').val();
|
||
|
|
||
|
if (password != confirm_password) {
|
||
|
this.setCustomValidity("Passwords do not match.");
|
||
|
} else {
|
||
|
this.setCustomValidity('');
|
||
|
}
|
||
|
});
|