HTML登錄系統代碼
以下是一個基本的HTML登錄系統代碼。
<!DOCTYPE html> <html> <head> <title>登錄頁面</title> </head> <body> <h1>登錄</h1> <form action="login.php" method="post"> <label for="username">用戶名:</label> <input type="text" name="username" id="username"> <br> <label for="password">密碼:</label> <input type="password" name="password" id="password"> <br> <input type="submit" value="登錄"> </form> </body> </html>
在這段代碼中,我們創建了一個登錄頁面。它包括一個標題、一個登錄表單以及一個提交按鈕。
表單使用了POST方法,并將數據提交到login.php文件中。表單包含兩個字段:用戶名和密碼。在輸入框中,我們使用了