HTML登錄頁面源代碼
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>登錄頁面</title> </head> <body> <h1>歡迎登錄</h1> <form action="login.php" method="post"> <p> <label>用戶名:</label> <input type="text" name="username" required> </p> <p> <label>密碼:</label> <input type="password" name="password" required> </p> <p> <input type="submit" value="登錄"> </p> </form> </body> </html>
以上代碼為一個簡單的HTML登錄頁面源代碼。
在該頁面中,使用form標簽來創建登錄表單,其中action屬性指向處理登錄信息的頁面,method屬性為post,表示向該網頁發送信息。
用戶名和密碼的輸入框都使用input標簽創建,并分別設置了name、type、required屬性。name屬性表示該輸入框的名稱,type屬性為text或password表示不同的輸入框類型,required屬性表示該輸入框是必填的。
登錄按鈕同樣使用input標簽創建,并設置了type為submit,表示該按鈕用于提交表單。
下一篇css 初始化頁面