123456789101112131415161718192021222324252627282930313233343536 |
- //<!--
-
- function validateFrmAddUser() {
- if ($('login').value == "") {
- alert("The username field cannot be left blank.");
- document.frm_add.login.select();
- return false;
- }
- if ($('password').value == "") {
- alert("The password field cannot be left blank.");
- document.frm_add.password.select();
- return false;
- }
- if ($('password').value != $('repass').value) {
- alert("The password must match,\nplease verify them.");
- document.frm_add.password.focus();
- return false;
- }
- return true;
- }
-
- function verifyExistingUser() {
- $('div-process').style.display="block";
- el = $('target');
- el.style.display="block";
- var path = 'ajax.php?action=verify&login='+$('login').value;
- new Ajax(path, {
- onComplete:function(e) {
- el.setHTML(e);
- $('div-process').style.display="none";
- }
- }).request();
- return false;
- }
-
- //-->
|