search
  • Sign In
  • Sign Up
Password reset successful

Follow the proiects vou are interested in andi aet the latestnews about them taster

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>


new file
<!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>
Reset Code
Automatic operation
submit
Preview Clear