An Ajax check on the username field at registration

This commit is contained in:
Luke Robinson 2010-03-04 15:21:51 +00:00 committed by Doug Bell
parent d0884afb59
commit c61e7454d0
8 changed files with 274 additions and 2 deletions

View file

@ -0,0 +1,11 @@
package WebGUI::i18n::English::Form;
use strict;
our $I18N = {
'field required' => {
message => q|This field is required.|,
lastUpdated => 1217216725
},
};
1;

View file

@ -0,0 +1,11 @@
package WebGUI::i18n::English::Form_Username;
use strict;
our $I18N = {
'username in use' => {
message => q|Sorry, that account name is already in use by another member of this site.|,
lastUpdated => 1217216725
},
};
1;