* Again change ANSI font handling

* Add prompt.json
This commit is contained in:
Bryan Ashby 2015-04-23 23:00:48 -06:00
parent 1e3e0b8baa
commit 91d395e8bc
7 changed files with 188 additions and 18 deletions

View file

@ -36,7 +36,7 @@ function validateApplicationData(formData, cb) {
return;
}
if(formData.value.password !== formData.value.pwConfirm) {
if(formData.value.password !== formData.value.passwordConfirm) {
cb('Passwords do not match!', [ 9, 10 ]);
return;
}