国产av日韩一区二区三区精品,成人性爱视频在线观看,国产,欧美,日韩,一区,www.成色av久久成人,2222eeee成人天堂

Styleless implementation of user registration

Simple form registration function, the user enters the user name and password to register, and performs post submission

The interface is as follows:

微信圖片_20180227170250.png

register.html:

<!DOCTYPE html>
 <html lang="en">
 <head>
 <meta charset="UTF-8">
 <title>Title</title>
 </head>
 <body>
 <hr size="1">
 <form action="add.php" method="post" >
    用戶:<input type="text" name="username"/><br>
    密碼:<input type="password" name="password" /><br>
    確認(rèn)密碼:<input type="password" name="repassword" /><br>
    <input type="submit" name="register" value="注冊">
 </form>


Continuing Learning
||
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> </head> <body> <hr size="1"> <form action="add.php" method="post" > 用戶:<input type="text" name="username"/><br> 密碼:<input type="password" name="password" /><br> 確認(rèn)密碼:<input type="password" name="repassword" /><br> <input type="submit" name="register" value="注冊"> </form>
submitReset Code