亚洲国产日韩欧美一区二区三区,精品亚洲国产成人av在线,国产99视频精品免视看7,99国产精品久久久久久久成人热,欧美日韩亚洲国产综合乱

Styleless implementation of user login

Enter the username and password to log in and submit the form

The code is as follows:

login.html

<!DOCTYPE html>
 <html lang="en">
 <head>
 <meta charset="UTF-8">
 <title>Title</title>
 </head>
 <body>
 <hr size="1">
 <form action="success.php" method="post" >
    用戶:<input type="text" name="username"/><br>
    密碼:<input type="password" name="password" /><br>
    <input type="submit" name='login' value="登錄">
 </form>


Continuing Learning
||
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> </head> <body> <hr size="1"> <form action="success.php" method="post" > 用戶:<input type="text" name="username"/><br> 密碼:<input type="text" name="password" /><br> <input type="submit" name='login' value="登錄"> </form>
submitReset Code