1.首先,你要编写你自己的注册页面,以前的注册页面注册内容多而繁杂,很多都是没有必要的,即便注册了日后几乎也用不到。现在的注册趋近简单,用户名、账号、密码、确认密码、手机号、邮箱这几个即可以了。如果只是自己的小开发,账号、密码、确认密码足够用了。
<tr>
<td>用户名:</td>
<td><input type="text" name="username" id="username" value="" οnblur="checkusername()" οnfοcus="clearusername()"></td>
<td><span id="nameSpan" style="color:red;">${error.username }</span></td>
</tr>
<tr>
<td>密码:</td>
<td><input type="password" name="password" id="" value="" οnblur="checkpassword()" οnfοcus="clearpassword()"