HTML登錄頁面代碼模板
<!DOCTYPE html> <html> <head> <title>登錄頁面</title> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" type="text/css" href="style.css"> </head> <body> <form action="login.php" method="post"> <h2>登錄頁面</h2> <label for="username">用戶名:</label> <input type="text" id="username" name="username" required> <br> <label for="password">密碼:</label> <input type="password" id="password" name="password" required> <br> <input type="submit" value="登錄"> </form> </body> </html>
此HTML模板包括一個登錄表單,包括用戶名和密碼輸入框以及提交按鈕。代碼使用語義化標簽和屬性,具有良好的可讀性和可訪問性。
在實際應用中,我們可以根據需要添加其他功能或樣式,并將表單提交指向適當的處理程序。
下一篇vue打包及部署