完成登录与注册页面的前端
本站寻求有缘人接手,详细了解请联系站长QQ1493399855
完成登录与注册页面的HTML+CSS+JS,其中的输入项检查包括:
用户名6-12位
首字母不能是数字
只能包含字母和数字
密码6-12位
注册页两次密码是否一致
<!DOCTYPE html> <html lang="en"> <head><meta charset="UTF-8"><title>登录</title><script src="../static/js/wr.js"></script><link href="../static/css/wr.css" rel="stylesheet" type="text/css"> </head> <body> <div class="box"><h2>登录</h2><div class="input-box"><input type="text" name="firstname" placeholder="输入用户名"><br></div><div class="input_box"><input id="upass" type="password" placeholder="输入密码" ></div><div id="error_box"><br></div><div class="input_box"><button onclick="fnLogin()">登录</button> </body> </html>