summaryrefslogtreecommitdiffstats
path: root/js/authenticate.js
blob: cedacdc117c26e702b7b3addb81146f865dd9565 (plain)
1
2
3
4
5
6
7
8
9
$(document).ready(function(){
	$('#password').on('keyup input change', function() {
		if ($('#password').val().length > 0) {
			$('#password-submit').prop('disabled', false);
		} else {
			$('#password-submit').prop('disabled', true);
		}
	});
});