|
<% if (withError) { %>
<% if (invalidName) { %>
Your USERNAME exists already! If you are a New User, please enter another and press the Ok button when done.
<% if (pwdError) { %>
(Also, your password does not confirm with your second entry.)
<% } else if (invalidPwdChar) { %>
(Also, your PASSWORD might be empty or contains one or more invalid characters. Valid characters are "A" to "Z", "a" to "Z", "0" to "9", "@", "-", and "_" with maximum of 12 characters.
<% } %>
<% } else if (pwdError) { %>
Your PASSWORD does not confirm with your second entry. Please re-enter data and press the Ok button when done.
<% } else { %>
Your USERNAME/PASSWORD might be empty or contains one or more invalid characters. Valid characters are "A" to "Z", "a" to "Z", "0" to "9", "@", "-", and "_" with maximum of 12 characters. Please re-enter data and press the Ok button when done.
<% } %>
<% if (existingUser) { %>
<% } %>
<% } else { %>
<%
bytAppLvlStatus = 1;
users.connect(strTempDB);
users.addUser(strNewName, strPwd1, bytAppLvlStatus);
users.disconnect();
%>
<% } %>
|